/* Global Styles */
:root {
    --primary-color: #8C5E58;
    --secondary-color: #D4AA7D;
    --tertiary-color: #F2E9E4;
    --dark-color: #40312E;
    --light-color: #F9F7F6;
    --accent-color: #C89F9C;
    --font-main: 'Raleway', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 1s ease-out forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    animation: slideDown 0.6s ease-out;
    transition: all 0.3s ease;
}

/* Kaydırma durumunda header stili */
header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo img {
    max-height: 60px; /* Scroll durumunda logoyu küçült */
    transition: max-height 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.logo a {
    display: inline-block;
}

.logo img {
    max-height: 90px;
    width: auto;
}

/* Mobil için logo boyutunu düzenleme */
@media (max-width: 992px) {
    .logo img {
        max-height: 75px;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 65px;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 55px;
    }
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Şeffaf navbar için beyaz metin ve gölge ekleyelim */
header:not(.scrolled) nav ul li a {
    color: white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
}

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

nav ul li a.active::after {
    content: none; /* Önceki active stil çizgisini kaldırıyoruz */
}

.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;
    position: relative;
}

/* Modern Hamburger Icon */
.hamburger-icon {
    width: 28px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
    transform-origin: left center;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
}

/* Aktif hamburger ikonu X'e dönüşümü */
.mobile-menu.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 6px;
}

.mobile-menu.active .hamburger-icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 17px;
    left: 6px;
}

/* Şeffaf navbar için beyaz hamburger menü */
header:not(.scrolled) .hamburger-icon span {
    background: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Header scroll olduğunda hamburger menü */
header.scrolled .hamburger-icon {
    width: 26px;
    height: 18px;
}

header.scrolled .hamburger-icon span:nth-child(1) {
    top: 0;
}

header.scrolled .hamburger-icon span:nth-child(2) {
    top: 7px;
}

header.scrolled .hamburger-icon span:nth-child(3) {
    top: 14px;
}

/* Modern Tam Ekran Overlay Menü */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #8c5e58 0%, #a67c76 50%, #8c5e58 100%);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0.8);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Overlay İçerik */
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

/* Overlay Menü Listesi */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.mobile-nav-overlay.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation için gecikmeler */
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.4s; }

/* Menü Linkleri */
.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mobile-nav-menu a:hover {
    color: #f4f4f4;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-nav-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Alt çizgi efekti */
.mobile-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.mobile-nav-menu a:hover::after {
    width: 80%;
}

/* Sosyal Medya İkonları */
.mobile-social-icons {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.mobile-nav-overlay.active .mobile-social-icons {
    opacity: 1;
    transform: translateY(0);
}

.mobile-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-social-icons a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Kapatma Butonu */
.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* Eski menü stillerini gizle */
nav.active {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    /* Mobil menü responsive ayarları */
    .mobile-nav-menu a {
        font-size: 2rem;
    }
    
    .mobile-social-icons {
        gap: 1.5rem;
    }
    
    .mobile-social-icons a {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav-menu a {
        font-size: 1.8rem;
    }
    
    .mobile-nav-content {
        padding: 1rem;
    }
    
    .mobile-nav-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

/* Hero Section Styles */
/* Ana sayfa için tam ekran hero */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Diğer sayfalar için daha büyük hero */
.product-hero, .about-hero, .contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 170px 0 100px;
    height: auto;
    margin-bottom: 40px;
    position: relative;
}

.product-hero h1, .about-hero h1, .contact-hero h1 {
    color: white;
    font-size: 2.7rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Ana sayfa hero bölümü için özel stil */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery & Features Section */
.gallery-features {
    padding: 60px 0;
    background-color: var(--tertiary-color);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 1));
    opacity: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.8s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 1));
    opacity: 0;
    transform-origin: center;
}

.gallery-item img {
    transition: transform 0.7s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: white;
    margin-bottom: 60px;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(242, 233, 228, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background-color: var(--tertiary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    max-width: 350px;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: calc(0.2s * var(--animation-order, 1));
    opacity: 0;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--primary-color);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-item p::before,
.testimonial-item p::after {
    content: '"';
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
}

.testimonial-item p::before {
    top: -15px;
    left: -5px;
}

.testimonial-item p::after {
    bottom: -25px;
    right: -5px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
}

.footer-links h3, .footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
    color: white;
}

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

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

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Products Page Styles */
.product-hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-hero p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out forwards;
    position: relative;
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 5px 10px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out forwards;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 1));
}

.product-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-image:hover .zoom-icon {
    transform: scale(1);
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 4px solid white;
    border-radius: 4px;
}

.lightbox-caption {
    margin: auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 50px;
    font-size: 1.1rem;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.close-lightbox::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: white;
    background: rgba(220, 53, 69, 0.9);
    border-color: rgba(220, 53, 69, 0.3);
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(220, 53, 69, 0.4),
        0 0 40px rgba(220, 53, 69, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.close-lightbox:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
}

.close-lightbox:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Pulse animasyonu */
.close-lightbox::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(220, 53, 69, 0.6);
    opacity: 0;
    transform: scale(1);
    animation: none;
}

.close-lightbox:hover::after {
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.product-info {
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: white;
    transition: all 0.3s ease;
}

.product-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.product-item:hover .product-info::after {
    width: 100%;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.product-item:hover .product-info h3 {
    color: var(--primary-color);
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-info-section {
    padding: 60px 0;
    background-color: var(--tertiary-color);
    position: relative;
    overflow: hidden;
}

.product-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0%, var(--tertiary-color) 70%);
    z-index: 0;
}

.info-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    animation: scaleIn 0.8s ease-out forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.5s ease, color 0.3s ease;
}

.info-box:hover .info-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-box p {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.value-item {
    padding: 20px;
}

.value-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-process {
    padding: 60px 0;
    background-color: var(--tertiary-color);
    margin-bottom: 60px;
}

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

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.about-gallery {
    margin-bottom: 60px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-details, .contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-contact {
    margin-top: 30px;
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.faqs {
    padding: 60px 0;
    background-color: var(--tertiary-color);
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* İletişim Sayfası Güzelleştirmeleri */
.contact-hero .hero-scroll-down {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.contact-hero .hero-scroll-down a {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-hero .hero-scroll-down a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-info {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.contact-card:hover .card-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
}

.contact-card:hover .btn-contact {
    opacity: 1;
    transform: translateY(0);
}

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

/* Sosyal Medya Bölümü */
.social-media-section {
    padding: 80px 0;
    background-color: var(--tertiary-color);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0%, var(--tertiary-color) 70%);
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.social-media-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.social-media-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.03);
    transition: height 0.4s ease;
    z-index: -1;
}

.social-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.social-media-card:hover::after {
    height: 100%;
}

.social-media-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s ease;
}

.social-media-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.social-media-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Sosyal Medya Kart Renkler */
.instagram .social-media-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.facebook .social-media-icon {
    background-color: #3b5998;
    color: white;
}

.pinterest .social-media-icon {
    background-color: #bd081c;
    color: white;
}

.whatsapp .social-media-icon {
    background-color: #25d366;
    color: white;
}

.social-media-card:hover .social-media-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Harita Bölümü */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.map-wrapper iframe {
    display: block;
}

/* CTA Bölümü */
.contact-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.06) 10px, rgba(0, 0, 0, 0.06) 20px);
    opacity: 0.4;
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* SSS Bölümü Güzelleştirmesi */
.faq-item {
    transition: all 0.4s ease;
    margin-bottom: 20px;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-toggle {
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

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

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

/* Responsive İyileştirmeler */
@media (max-width: 768px) {
    .contact-cards,
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .product-hero, .about-hero, .contact-hero {
        padding: 150px 0 80px;
        height: auto;
    }
    
    .product-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Mobil modda menü öğelerini düzgün göster */
    nav ul {
        padding: 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    /* Mobil cihazlar için hero arka planını optimize et */
    .product-hero, .about-hero, .contact-hero {
        background-position: center center;
        background-attachment: scroll;
        padding: 110px 0 50px;
        min-height: auto;
        max-height: 50vh;
    }
    
    .product-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px; /* Daha az boşluk */
    }
    
    .product-hero p, .about-hero p, .contact-hero p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .feature-item, 
    .testimonial-item {
        padding: 20px;
    }
    
    .gallery-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details, 
    .contact-form {
        padding: 25px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Daha küçük mobil cihazlar için hero arka planını optimize et */
    .product-hero, .about-hero, .contact-hero {
        background-position: center top;
        padding: 90px 0 30px;
        min-height: auto;
        max-height: 45vh;
    }
    
    .product-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 1.6rem;
        margin-bottom: 8px; /* Daha az boşluk */
    }
    
    .product-hero p, .about-hero p, .contact-hero p {
        font-size: 0.9rem;
        max-width: 95%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    header .container {
        padding: 10px 15px;
    }
}

/* Products Page Hero */
.product-hero .hero-scroll-down {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.product-hero .hero-scroll-down a {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-hero .hero-scroll-down a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

/* Product Meta */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    color: #777;
}

.product-category {
    display: flex;
    align-items: center;
}

.product-category i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Tab Button Enhancement */
.tab-btn span {
    position: relative;
    z-index: 2;
}

.tab-btn.active, .tab-btn:hover {
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb, 140, 94, 88), 0.25);
}

/* Hakkımızda Sayfası İyileştirmeleri */
.about-hero .hero-scroll-down {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
}

.about-hero .hero-scroll-down a {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-hero .hero-scroll-down a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.about-story {
    padding: 80px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(242, 233, 228, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.about-image .image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image .image-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.about-image:hover .image-frame::before {
    transform: scale(1);
    opacity: 0.8;
}

.about-image:hover .image-frame {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-text {
    padding: 20px;
    position: relative;
}

.about-text h2 {
    position: relative;
    margin-bottom: 30px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.about-text:hover h2::after {
    width: 80px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.about-mission {
    padding: 80px 0;
    background-color: var(--tertiary-color);
    position: relative;
}

.value-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.5s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-item:hover::before {
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.value-item:hover .value-icon {
    transform: rotateY(180deg);
    background-color: var(--primary-color);
    color: white;
}

.process-step {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
    z-index: -1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step:hover::after {
    width: 100%;
}

.step-number {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

/* Animasyon Öznitelikleri */
[data-animation] {
    opacity: 0;
}

[data-animation="fade-up"] {
    transform: translateY(30px);
}

[data-animation="fade-left"] {
    transform: translateX(-30px);
}

[data-animation="fade-right"] {
    transform: translateX(30px);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

.animate {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.animate[data-animation="fade-up"] {
    animation-name: customFadeUp;
}

.animate[data-animation="fade-left"] {
    animation-name: customFadeLeft;
}

.animate[data-animation="fade-right"] {
    animation-name: customFadeRight;
}

.animate[data-animation="zoom-in"] {
    animation-name: customZoomIn;
}

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

@keyframes customFadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes customFadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes customZoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Minimalist İletişim Sayfası Stilleri */
.contact-info.minimalist {
    padding: 80px 0;
    background-color: white;
}

.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-bottom-color: var(--primary-color);
}

.contact-icon {
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

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

.contact-text p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Sosyal Medya Bölümü - Minimalist */
.social-simple {
    padding: 60px 0;
    background-color: var(--tertiary-color);
    text-align: center;
}

.social-icons-large {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icon-link:hover {
    transform: translateY(-5px);
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Harita Bölümü - Minimalist */
.map-simple {
    display: block;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-simple iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* SSS Bölümü Minimalist İyileştirme */
.faqs {
    padding: 80px 0;
    background-color: white;
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 0 20px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-item:hover {
    border-bottom-color: var(--primary-color);
}

/* Responsive İyileştirmeler - Minimalist */
@media (max-width: 768px) {
    .contact-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-icons-large {
        gap: 20px;
    }
    
    .social-icon-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
} 

.intro {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f6f1;
    color: #333;
}

.intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

::selection {
    background-color: #d8c1a7; /* Arka plan rengi */
    color: #b48484;              /* Seçilen metnin rengi */
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* About Gallery - 3 columns for 3 photos */
.about-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

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

@media (max-width: 992px) and (min-width: 769px) {
    .about-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Lightbox Navigation Butonları */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav i {
    font-size: 20px;
}

/* Mobil için navigation butonları */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-nav i {
        font-size: 16px;
    }
}

/* Disabled state */
.lightbox-nav[style*="opacity: 0.3"] {
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.2) !important;
}

.lightbox-nav[style*="opacity: 0.3"]:hover {
    transform: translateY(-50%) scale(1) !important;
    box-shadow: none !important;
}

/* Smooth görsel geçişi */
.lightbox-content {
    transition: opacity 0.3s ease;
}

/* Keyboard hint kaldırıldı - ipucu yazısı artık yok */