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

body {
    font-family: 'Inter', sans-serif;
    color: #1e2a2e;
    background-color: #ffffff;
    line-height: 1.5;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.loader-active {
    overflow: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e2a2e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.section-title span {
    color: #2e7d32;
}

.section-title p {
    color: #5a6e6b;
    font-size: 18px;
    transition: color 0.3s ease;
}

.green-text {
    color: #2e7d32;
}

/* LOADER EKRANI */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fef7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid #e0e8e0;
    border-top: 4px solid #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 32px;
    font-weight: 700;
    color: #1e2a2e;
    margin-bottom: 10px;
}

.loader-text span {
    color: #2e7d32;
}

.loader p {
    color: #5a6e6b;
    font-size: 16px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #2e7d32;
    color: white;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid #2e7d32;
    color: #2e7d32;
}

.btn-outline:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-3px);
}

/* HEADER & MASAÜSTÜ MENÜ */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.logo span {
    color: #2e7d32;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-right: 20px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
    color: #1e2a2e;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2e7d32;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #1e2a2e;
}

.theme-toggle:hover {
    background: #2e7d32;
    color: white;
    transform: rotate(15deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1e2a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* ============ MOBİL MENÜ - TAM EKRAN VE ORTALI ============ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fef7 100%);
    z-index: 2000;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    overflow-y: auto;
}

.mobile-menu-header {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 0;
    border-bottom: 2px solid #2e7d32;
}

.mobile-menu-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #1e2a2e;
}

.mobile-menu-logo span {
    color: #2e7d32;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-theme-toggle {
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #1e2a2e;
}

.mobile-theme-toggle:hover {
    background: #2e7d32;
    color: white;
    transform: rotate(15deg);
}

.mobile-menu-close {
    background: #2e7d32;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #1b5e20;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    color: white;
    font-size: 20px;
}

.mobile-nav-menu {
    width: 100%;
    max-width: 320px;
    list-style: none;
    text-align: center;
    margin: 0 auto;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #e0e8e0;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: #1e2a2e;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-nav-menu a:hover {
    color: #2e7d32;
    padding-left: 15px;
}

.mobile-nav-menu a.active {
    color: #2e7d32;
    padding-left: 15px;
    font-weight: 700;
}

.mobile-menu-social {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 10px 0;
}

.mobile-menu-social h4,
.mobile-menu-contact h4 {
    font-size: 18px;
    color: #1e2a2e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mobile-menu-social h4:after,
.mobile-menu-contact h4:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: #2e7d32;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
}

.mobile-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
    color: white;
}

.mobile-social-icons a:hover {
    transform: translateY(-3px);
}

.mobile-social-icons a:nth-child(1) { background: #1877f2; }
.mobile-social-icons a:nth-child(2) { background: #e4405f; }
.mobile-social-icons a:nth-child(3) { background: #1da1f2; }
.mobile-social-icons a:nth-child(4) { background: #0077b5; }
.mobile-social-icons a:nth-child(5) { background: #ff0000; }

.mobile-menu-contact {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 10px 0;
}

.mobile-wa-btn,
.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 12px;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-wa-btn {
    background: #25d366;
    color: white;
}

.mobile-wa-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.mobile-phone-btn {
    background: #2e7d32;
    color: white;
}

.mobile-phone-btn:hover {
    background: #1b5e20;
    transform: scale(1.02);
}

.mobile-wa-btn i,
.mobile-phone-btn i {
    font-size: 18px;
}

/* HERO */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f9fef7 0%, #ffffff 100%);
    transition: background 0.3s ease;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.hero-content p {
    font-size: 18px;
    color: #4a5b58;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

/* HAKKIMIZDA */
.about-section {
    padding: 80px 0;
    background: white;
    transition: background 0.3s ease;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: #5a6e6b;
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
}

.stat-label {
    color: #5a6e6b;
    font-size: 14px;
    transition: color 0.3s ease;
}

.about-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FEATURES */
.features {
    padding: 80px 0;
    background: #f9fef7;
    transition: background 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 48px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #5a6e6b;
    transition: color 0.3s ease;
}

/* PRODUCT PREVIEW */
.preview-product {
    background-color: white;
    padding: 80px 0;
    transition: background 0.3s ease;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: #f9fef7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

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

.product-card h3 {
    margin: 20px 20px 8px;
    font-size: 20px;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.product-card p {
    margin: 0 20px 20px;
    color: #5a6e6b;
    transition: color 0.3s ease;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f9fef7;
    transition: background 0.3s ease;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.faq-question i {
    transition: 0.3s;
    color: #2e7d32;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 20px 24px;
    border-top: 1px solid #e0e8e0;
    background: #f9fef7;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-answer-content p {
    color: #5a6e6b;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

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

/* GALERİ */
.gallery-section {
    background: white;
    padding: 80px 0;
    transition: background 0.3s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

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

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

/* İLETİŞİM BİLGİ KARTLARI */
.contact-section {
    padding: 80px 0;
    background: #f9fef7;
    transition: background 0.3s ease;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f8faf8;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 40px;
    color: #2e7d32;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1e2a2e;
    transition: color 0.3s ease;
}

.info-card p {
    color: #5a6e6b;
    transition: color 0.3s ease;
}

/* HARİTA + FORM YAN YANA */
.contact-map-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f8faf8;
    border-radius: 32px;
    padding: 30px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-new h3 {
    font-size: 24px;
    color: #1e2a2e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-form-new input,
.contact-form-new textarea {
    padding: 14px 20px;
    border: 1px solid #dde3de;
    border-radius: 28px;
    font-family: inherit;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    color: #1e2a2e;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-form-new button {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
}

.contact-form-new .btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER (RESİMLİ) */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.7)), url('https://i.pinimg.com/originals/3f/68/dc/3f68dca56de281426a36d192bf823600.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    padding: 60px 0 20px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-about h3 span {
    color: #2e7d32;
}

.footer-about p {
    color: #cddfd9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.footer-social a:hover {
    background: #2e7d32;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-hours h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2e7d32;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cddfd9;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: #2e7d32;
    padding-left: 5px;
}

.footer-contact p,
.footer-hours p {
    color: #cddfd9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i,
.footer-hours p i {
    width: 25px;
    color: #2e7d32;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #cddfd9;
    font-size: 14px;
}

.footer-bottom a {
    color: #2e7d32;
}

/* ============ FLOATING BUTTONS (SABİT BUTONLAR) ============ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.floating-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.floating-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    pointer-events: auto;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.float-btn i {
    font-size: 20px;
}

.float-btn .btn-text {
    display: inline-block;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.phone-btn {
    background: #2e7d32;
    color: white;
}

.phone-btn:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.scroll-top-btn {
    background: #2e7d32;
    color: white;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

.scroll-top-btn i {
    font-size: 24px;
}

.scroll-top-btn .btn-text {
    display: none;
}

.scroll-top-btn:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ============ VİDEO BUTONU ============ */
.btn-video {
    background: #ff0000;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-video:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

.btn-video i {
    font-size: 14px;
}

/* ============ VİDEO POPUP ============ */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-popup.active {
    visibility: visible;
    opacity: 1;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-popup-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10000;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ff0000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    color: white;
    font-size: 20px;
}

.video-popup-close:hover {
    background: #cc0000;
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============ DARK MODE STILLERİ ============ */
body.dark-mode {
    background-color: #1a1a2e;
    color: #ffffff;
}

body.dark-mode .header {
    background: #16213e;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

body.dark-mode .logo a,
body.dark-mode .mobile-menu-logo a,
body.dark-mode .section-title h2,
body.dark-mode .hero-content h1,
body.dark-mode .feature-card h3,
body.dark-mode .product-card h3,
body.dark-mode .faq-question h3,
body.dark-mode .info-card h4,
body.dark-mode .contact-form-new h3 {
    color: #ffffff;
}

body.dark-mode .nav-menu a,
body.dark-mode .mobile-nav-menu a {
    color: #dddddd;
}

body.dark-mode .nav-menu a:hover,
body.dark-mode .mobile-nav-menu a:hover,
body.dark-mode .nav-menu a.active,
body.dark-mode .mobile-nav-menu a.active {
    color: #2e7d32;
}

body.dark-mode .hero,
body.dark-mode .social-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

body.dark-mode .hero-content p,
body.dark-mode .section-title p,
body.dark-mode .about-text p,
body.dark-mode .feature-card p,
body.dark-mode .product-card p,
body.dark-mode .faq-answer-content p,
body.dark-mode .info-card p,
body.dark-mode .stat-label {
    color: #bbbbbb;
}

body.dark-mode .features,
body.dark-mode .faq-section,
body.dark-mode .contact-section,
body.dark-mode .about-section,
body.dark-mode .preview-product,
body.dark-mode .gallery-section {
    background: #1a1a2e;
}

body.dark-mode .feature-card,
body.dark-mode .info-card,
body.dark-mode .contact-map-form,
body.dark-mode .product-card,
body.dark-mode .faq-item {
    background: #16213e;
}

body.dark-mode .feature-card:hover,
body.dark-mode .info-card:hover,
body.dark-mode .product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

body.dark-mode .faq-answer-content {
    background: #1a1a2e;
    border-top-color: #2e7d32;
}

body.dark-mode .contact-form-new input,
body.dark-mode .contact-form-new textarea {
    background: #1a1a2e;
    border-color: #2e7d32;
    color: #ffffff;
}

body.dark-mode .contact-form-new input::placeholder,
body.dark-mode .contact-form-new textarea::placeholder {
    color: #888888;
}

body.dark-mode .contact-form-new input:focus,
body.dark-mode .contact-form-new textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

body.dark-mode .mobile-menu-overlay {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

body.dark-mode .mobile-menu-social a,
body.dark-mode .mobile-menu-contact a {
    color: white;
}

body.dark-mode .mobile-menu-social h4,
body.dark-mode .mobile-menu-contact h4 {
    color: #ffffff;
}

body.dark-mode .theme-toggle,
body.dark-mode .mobile-theme-toggle {
    background: #16213e;
    color: #ffffff;
}

body.dark-mode .theme-toggle:hover,
body.dark-mode .mobile-theme-toggle:hover {
    background: #2e7d32;
}

body.dark-mode .btn-outline {
    border-color: #2e7d32;
    color: #2e7d32;
}

body.dark-mode .btn-outline:hover {
    background: #2e7d32;
    color: white;
}

body.dark-mode .stat-number {
    color: #2e7d32;
}

body.dark-mode .gallery-item {
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

/* ============ RESPONSIVE DÜZENLEMELER ============ */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-container {
        flex-direction: column;
    }
    .contact-map-form {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 350px;
    }
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .logo {
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .features-grid,
    .product-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-map-form {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after,
    .footer-hours h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p,
    .footer-hours p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .floating-left {
        left: 15px;
        bottom: 15px;
    }
    
    .floating-right {
        right: 15px;
        bottom: 15px;
    }
    
    .float-btn {
        padding: 10px 16px;
    }
    
    .float-btn i {
        font-size: 18px;
    }
    
    .whatsapp-btn .btn-text,
    .phone-btn .btn-text {
        display: inline-block;
        font-size: 12px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Video butonu mobilde sadece icon */
    .btn-video .btn-text {
        display: none;
    }
    
    .btn-video {
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-video i {
        font-size: 18px;
        margin: 0;
    }
    
    /* Video popup mobil düzenleme */
    .video-popup-container {
        width: 95%;
    }
    
    .video-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .whatsapp-btn .btn-text,
    .phone-btn .btn-text {
        display: none;
    }
    
    .float-btn {
        padding: 12px;
        border-radius: 50%;
    }
    
    .float-btn i {
        margin: 0;
    }
    
    .floating-left {
        gap: 10px;
    }
}