@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

/* Base */
:root {
    --color-primary: #ff4500;
    --color-secondary: #1a1a1a;
    --color-background: #0f0f0f;
    --color-text: #ffffff;
    --color-accent: #ff7a3d;
    --color-card: #1d1d1d;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

h2 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
}

p {
    margin: 0 0 1.5rem 0;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-accent);
}

/* Wrapper */
#wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-color: var(--color-background);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0iIzBmMGYwZiI+PC9yZWN0Pgo8cGF0aCBkPSJNMCAwTDIwIDIwWk0yMCAwTDAgMjBaIiBzdHJva2U9IiMxYTFhMWEiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Masaüstü ve mobil görünümde sol alttaki menu yazısını ve navPanel'i gizle */
#navPanel, #navPanelToggle {
    display: none !important;
}

/* Ekstra önlem olarak tüm ilgili nav panellerini gizleyelim */
body.is-navPanel-visible #navPanel {
    display: none !important;
}

/* Orjinal temadaki nav panel davranışlarını geçersiz kılalım */
body.is-navPanel-visible #wrapper {
    opacity: 1 !important; /* Arka planı karartmayı engelleyelim */
}

/* Intro Section */
#intro {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), url('images/koltuk1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.intro-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    margin-bottom: 2rem;
}

.logo-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 69, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

#intro h1 {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

#intro p {
    color: #fff;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.button:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4);
}

.button.icon {
    display: flex;
    align-items: center;
}

.button.icon.solid:before {
    margin-right: 0.5rem;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Animations for the Intro button */
.animate__bounce {
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* Header */
#header {
    background-color: rgba(15, 15, 15, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

/* Hamburger Menü */
#hamburger-menu {
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

#hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Menü Animasyonları */
#hamburger-menu:hover span {
    background-color: var(--color-accent);
}

#hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

#hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation */
#nav {
    background-color: rgba(26, 26, 26, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: sticky;
    top: 64px;
    width: 100%;
    z-index: 99;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav ul.links li {
    position: relative;
}

#nav ul.links li a {
    display: block;
    padding: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    transition: all var(--transition-speed) ease;
}

#nav ul.links li a:hover,
#nav ul.links li.active a {
    color: var(--color-primary);
}

#nav ul.links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

#nav ul.links li:hover::after,
#nav ul.links li.active::after {
    width: 80%;
}

#nav ul.icons {
    display: flex;
    gap: 1rem;
}

#nav ul.icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    transition: all var(--transition-speed) ease;
}

#nav ul.icons li a:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Mobil Menu Stilleri */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Başlangıçta ekranın dışında */
    width: 280px;
    height: 100vh;
    background-color: var(--color-card);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 2rem;
}

#mobile-menu.active {
    right: 0; /* Menü aktif olduğunda ekrana getirilir */
}

.mobile-menu-close {
    text-align: right;
    margin-bottom: 2rem;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-close i:hover {
    color: var(--color-primary);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 4rem);
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-links li {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-links li a {
    color: var(--color-text);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 15px;
}

.mobile-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background-color: var(--color-primary);
    transition: height 0.3s ease;
}

.mobile-links li a:hover::before,
.mobile-links li.active a::before {
    height: 80%;
}

.mobile-links li a:hover,
.mobile-links li.active a {
    color: var(--color-primary);
}

#mobile-menu.active .mobile-links li {
    opacity: 1;
    transform: translateX(0);
}

#mobile-menu.active .mobile-links li:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.active .mobile-links li:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.active .mobile-links li:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.active .mobile-links li:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu.active .mobile-links li:nth-child(5) { transition-delay: 0.3s; }
#mobile-menu.active .mobile-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Overlay Efekti */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(3px);
}

body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

.icon.fab.fa-instagram {
    color: #e1306c;
}

.icon.fab.fa-whatsapp {
    color: #25D366;
}

/* Main Content */
#main {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    color: var(--color-text);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background-color: var(--color-primary);
    transform: translateX(-50%);
}

/* Featured Post / Hero Section */
.post.featured {
    background-color: var(--color-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
    transition: transform var(--transition-speed) ease;
}

.post.featured:hover {
    transform: translateY(-5px);
}

.post.featured header {
    padding: 2rem;
    text-align: center;
}

.post.featured header h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Image Slider */
.image-slider {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    transition: all 0.6s ease;
}

.slide.active {
    display: block;
    animation: fadeSlide 0.8s;
}

@keyframes fadeSlide {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 69, 0, 0.8);
}

.slider-dots {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--color-primary);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.benefit-card {
    background-color: var(--color-card);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--color-primary);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Products Section */
.products-section {
    margin-bottom: 4rem;
}

.products-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background-color: var(--color-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    opacity: 1;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.hot {
    background-color: var(--color-primary);
    color: white;
}

.product-badge.sale {
    background-color: #e74c3c;
    color: white;
}

.product-badge.best {
    background-color: #3498db;
    color: white;
}

.product-badge.custom {
    background-color: #9b59b6;
    color: white;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.quick-view {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    color: var(--color-secondary);
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.quick-view:hover {
    background-color: var(--color-primary);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.product-stars {
    color: #ffc107;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.product-details {
    margin-bottom: 1.25rem;
}

.product-details ul {
    list-style: none;
}

.product-details li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.details-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.details-btn:hover {
    background-color: var(--color-accent);
}

/* Process Section */
.process-section {
    margin-bottom: 4rem;
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 2rem;
    background-color: var(--color-card);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin: 1rem 0;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-slider {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    padding: 2rem 0;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.8s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--color-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 3rem;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--color-card) transparent transparent;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -50px;
    right: -10px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-stars {
    color: #ffc107;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--color-accent);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--color-primary);
    transition: all var(--transition-speed) ease;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
}

.cta-button.phone {
    background-color: white;
    color: var(--color-primary);
}

.cta-button.whatsapp {
    background-color: #25D366;
    color: white;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Product Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background-color: var(--color-card);
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-30px);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.product-modal.active {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition-speed) ease;
}

.modal-close:hover {
    background-color: var(--color-primary);
}

.modal-content {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.modal-gallery {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.main-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    flex: 1;
    min-width: 300px;
}

.modal-info h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description p {
    margin-bottom: 1.5rem;
}

.modal-description h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.modal-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.modal-button.primary {
    background-color: var(--color-primary);
    color: white;
}

.modal-button.secondary {
    background-color: #25D366;
    color: white;
}

/* Footer */
#footer {
    background-color: var(--color-secondary);
    color: var(--color-text);
    padding: 4rem 2rem;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    margin-bottom: 1rem;
}

.split.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.split.contact section {
    margin-bottom: 1.5rem;
}

.split.contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.split.contact h3 i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.split.contact p {
    color: rgba(255, 255, 255, 0.7);
}

.icons.alt {
    display: flex;
    gap: 1rem;
}

.icons.alt li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
}

.icons.alt li a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* Copyright */
#copyright {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    text-align: center;
}

#copyright ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#copyright ul li {
    margin: 0 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media screen and (max-width: 980px) {
    #nav {
        display: none; /* Mobil görünümde normal navbar'ı gizle */
    }
    
    #hamburger-menu {
        display: flex; /* Mobil görünümde hamburger menüyü göster */
    }

    .process-container {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 1 1 40%;
    }
    
    .modal-content {
        flex-direction: column;
    }
    
    .modal-gallery {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 736px) {
    #main {
        padding: 2rem 1rem;
    }
    
    .post.featured header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .slide img {
        height: 350px;
    }
    
    #copyright ul {
        flex-direction: column;
    }

    #copyright ul li {
        margin: 0.5rem 0;
    }
}

@media screen and (max-width: 480px) {
    #intro h1 {
        font-size: 2.5rem;
    }
    
    .intro-logo {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide img {
        height: 250px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    #header {
        padding: 1rem;
    }
    
    .logo .text {
        font-size: 1rem;
    }
    
    .header-logo {
        width: 30px;
        height: 30px;
    }
    
    #mobile-menu {
        width: 250px;
    }
    
    .contact-button {
        width: 100%;
    }
}

/* Tablet İçin Ek Stiller */
@media screen and (min-width: 737px) and (max-width: 980px) {
    .process-container {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 1 1 40%;
    }
}

/* Yazdırma Stilleri */
@media print {
    #header, #nav, #hamburger-menu, #mobile-menu, .contact-cta, #footer, #copyright {
        display: none !important;
    }
    
    #main {
        padding: 0;
    }
    
    .process-step {
        break-inside: avoid;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    * {
        box-shadow: none !important;
    }
}