/*
Theme Name: Bella Parke
Description: Bella Floor benzeri zemin kaplama teması
Version: 1.0
Author: AI Assistant
*/

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

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/* Bella Floor Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    letter-spacing: 0.3px;
}

h1 {
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}

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

/* Header Styles - Bella Floor Style */
.top-bar {
    display: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #d4a574;
}

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

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4a574;
}

.main-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    flex: 0 0 auto;
}

.header-center {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.logo svg {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #d4a574;
}

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

/* Koleksiyon Link Styling */
.koleksiyon-link {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.koleksiyon-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.koleksiyon-link:hover::after {
    width: 100%;
}

.koleksiyon-link:hover {
    color: #d4a574 !important;
}

.search-btn, .phone-btn, .whatsapp-btn {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-btn:hover, .phone-btn:hover {
    color: #d4a574;
}

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

.whatsapp-btn:hover {
    color: #128c7e;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 0;
    order: -1;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu Popup */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.4s ease;
    padding: 40px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #d4a574;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.main-menu-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 5px 10px;
    margin-right: 10px;
}

.main-menu-item:hover {
    color: #d4a574;
}

.separator {
    color: #ccc;
    margin-right: 15px;
}

/* Hero Slider - Bella Floor Style */
.hero-slider {
    position: relative;
    height: 850px;
    overflow: hidden;
    width: 100%;
    background-color: #333;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
}
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.slide-content, .slide-content h1, .slide-content a {
    color: #fff !important;
}

.slide-content {
    text-align: center;
    z-index: 10 !important;
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.slide-content h1 {
    font-family: 'Georgia', serif;
    font-size: 60px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    animation: slideInUp 1s ease-out;
    color: #fff !important;
}

.slide-content h1 br {
    display: block;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #d4a574;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
}

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

.btn-primary::after {
    content: '→';
    font-size: 18px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #d4a574;
    width: 30px;
    border-radius: 5px;
}

/* Bella Section */
.bella-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.bella-content h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.bella-content p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Mutluluk Section */
.mutluluk-section {
    padding: 80px 0;
    background-color: #fff;
}

.mutluluk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mutluluk-text h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.mutluluk-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mutluluk-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 2. Kart Section (Sol yazı - Sağ görsel) */
.card2-section {
    padding: 40px 0;
    background-color: #fff;
}

.card2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.card2-text h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.card2-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.card2-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card2-image img:hover {
    transform: scale(1.02);
}

/* 3. Kart Section (Sol görsel - Sağ yazı) */
.card3-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.card3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.card3-text {
    order: 2; /* Yazıyı sağa taşı */
}

.card3-image {
    order: 1; /* Görseli sola taşı */
}

.card3-text h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.card3-text h2 span {
    color: #d4a574;
    font-weight: 400;
}

.card3-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.card3-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card3-image img:hover {
    transform: scale(1.02);
}

/* Bella Uzmanlığı Section */
.bella-expertise-section {
    padding: 60px 0 80px 0;
    background-color: #f8f8f8;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.expertise-text {
    padding-right: 40px;
}

.expertise-text h2 {
    font-family: 'Georgia', serif;
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.1;
}

.expertise-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

.expertise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574 0%, #c19660 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-icon i {
    font-size: 24px;
    color: #fff;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.expertise-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
}

/* 5. Kart Section (Sol görsel - Sağ iletişim) */
.card5-section {
    padding: 40px 0;
    background-color: #fff;
}

.card5-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card5-image {
    order: 1; /* Görseli sola taşı */
    height: 400px;
    overflow: hidden;
}

.card5-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.card5-image img:hover {
    transform: scale(1.02);
}

.card5-contact {
    order: 2; /* İletişim bilgilerini sağa taşı */
    padding: 50px 60px 50px 0;
}

.card5-contact h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    text-align: left;
}

.contact-list .contact-item:hover {
    transform: none;
}

.contact-city {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    min-width: 120px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.contact-phone {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-phone:hover {
    color: #d4a574;
}

/* Phone and WhatsApp Buttons */
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact i {
    font-size: 18px;
}

.btn-phone {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    border: none;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #c19660, #a67c52);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

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

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

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

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 300;
    font-style: italic;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574 0%, #c19660 100%);
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

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

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.collection-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 30px 25px 25px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.collection-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.collection-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.collection-overlay .btn-small {
    background-color: #d4a574;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.collection-overlay .btn-small:hover {
    background-color: #c19660;
    transform: translateX(5px);
}

/* Hero Card Section */
.hero-card-section {
    padding: 100px 0 60px 0;
    background-color: #f8f8f8;
}

.hero-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hero-card-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card-content h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-card-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 450px;
}

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

.hero-card-image {
    height: 100%;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .hero-card {
        grid-template-columns: 1fr;
    }
    
    .hero-card-content {
        padding: 40px 30px;
    }
    
    .hero-card-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-card-section {
        padding: 60px 0 40px 0;
    }
    
    .card2-section, .card3-section {
        padding: 30px 0;
    }
    
    .bella-expertise-section {
        padding: 40px 0 60px 0;
    }
    
    .expertise-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-text h2 {
        font-size: 28px;
    }
    
    /* 5. Kart Mobil */
    .card5-section {
        padding: 30px 0;
    }
    
    .card5-image {
        height: 250px;
    }
    
    .card5-contact {
        padding: 30px 20px;
    }
    
    .card5-contact h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-city, .contact-phone {
        font-size: 18px;
    }
    
    .contact-city {
        min-width: 100px;
    }
    
    /* Simple Footer Mobil */
    .simple-footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-email a {
        font-size: 14px;
    }
    
    /* Koleksiyon Responsive - Mobil */
    .koleksiyon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .koleksiyon-image {
        height: 220px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
        justify-content: center;
    }
    
    .hero-card-content h2 {
        font-size: 28px;
    }
    
    .hero-card-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.contact-item h3 {
    margin-bottom: 15px;
    color: #d4a574;
    font-size: 20px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item i {
    color: #d4a574;
    font-size: 18px;
}

/* 360 Tour Section */
.tour-section {
    padding: 100px 0;
    background-color: #fff;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tour-iframe {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tour-info {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tour-info h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.tour-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Catalog Section */
.catalog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.catalog-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.catalog-image {
    height: 250px;
    overflow: hidden;
}

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

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

.catalog-info {
    padding: 25px;
}

.catalog-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.catalog-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.catalog-actions {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background-color: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
    padding: 13px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
}

.btn-secondary:hover {
    background-color: #d4a574;
    color: #fff;
}

/* Simple Footer */
.simple-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 25px 0;
}

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

.footer-email a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #d4a574;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: #d4a574;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background-color: #f8f8f8;
    padding: 40px 0 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4a574;
}

.breadcrumb span {
    color: #999;
    margin: 0 8px;
}

.page-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin: 0;
}

/* Koleksiyon Archive */
.koleksiyon-archive {
    padding: 60px 0;
    background-color: #fff;
}

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

.koleksiyon-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.koleksiyon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.koleksiyon-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.koleksiyon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.koleksiyon-card:hover .koleksiyon-image img {
    transform: scale(1.1);
}

.koleksiyon-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 40px 25px 25px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.koleksiyon-card:hover .koleksiyon-overlay {
    transform: translateY(0);
}

.koleksiyon-overlay h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 12px;
    color: #fff;
}

.koleksiyon-excerpt {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
}

.koleksiyon-btn {
    background-color: #d4a574;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.koleksiyon-btn:hover {
    background-color: #c19660;
    transform: translateX(5px);
}

.koleksiyon-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.koleksiyon-btn:hover i {
    transform: translateX(3px);
}

/* Koleksiyon Gallery Page */
.koleksiyon-gallery-page {
    padding: 60px 0;
    background-color: #fff;
}

/* Koleksiyon Description */
.koleksiyon-description {
    margin-bottom: 80px;
    text-align: center;
}

.koleksiyon-description .section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.koleksiyon-description .section-content h1,
.koleksiyon-description .section-content h2,
.koleksiyon-description .section-content h3 {
    font-family: 'Georgia', serif;
    color: #333;
    margin-bottom: 20px;
}

/* Products Gallery */
.koleksiyon-products {
    margin-bottom: 100px;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #e0e0e0;
}

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

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

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

/* Product Placeholder Patterns */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-placeholder.pattern-1 {
    background: linear-gradient(45deg, #8B4513 25%, #D2691E 25%, #D2691E 50%, #8B4513 50%, #8B4513 75%, #D2691E 75%);
    background-size: 40px 40px;
}

.product-placeholder.pattern-2 {
    background: linear-gradient(90deg, #2F4F4F 50%, #696969 50%);
    background-size: 30px 30px;
}

.product-placeholder.pattern-3 {
    background: radial-gradient(circle at 50% 50%, #DEB887 30%, #F5DEB3 35%, #F5DEB3 65%, #DEB887 70%);
    background-size: 50px 50px;
}

.product-placeholder.pattern-4 {
    background: linear-gradient(0deg, #8B4513 30%, #CD853F 30%, #CD853F 70%, #8B4513 70%);
    background-size: 25px 25px;
}

.placeholder-content {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.placeholder-content i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.placeholder-content span {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(212,165,116,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
}

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

/* Static Product Items (No interaction) */
.product-item.static {
    cursor: default;
}

.product-item.static .product-image {
    cursor: default;
}

.product-item.static:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #f0f0f0;
}

.product-item.static:hover .product-image img {
    transform: none;
}

.product-item.static .product-overlay {
    display: none;
}

.placeholder-text {
    color: #999;
    font-style: italic;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.product-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.product-overlay-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.product-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view {
    background: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: center;
}

.btn-view:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Product Info */
.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Koleksiyon Specs */
.koleksiyon-specs {
    margin-bottom: 80px;
    background: #f8f9fa;
    padding: 80px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

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

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

.spec-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.spec-item:hover .spec-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

.spec-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.spec-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

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

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Navigation Updates */
.nav-back {
    background: #d4a574;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-back:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .products-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .koleksiyon-specs {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .products-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-item {
        padding: 30px 20px;
    }
    
    .product-overlay-content h3 {
        font-size: 18px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* ===========================
   PRODUCT DETAIL PAGE STYLES
   =========================== */

/* Product Detail Page */
.urun-detail-page {
    padding: 60px 0;
    background-color: #fff;
}

/* Product Hero */
.urun-hero {
    margin-bottom: 100px;
}

.urun-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.urun-hero-image {
    position: relative;
}

.urun-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.urun-hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.urun-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.urun-hero-info h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.urun-meta {
    margin-bottom: 20px;
}

.urun-koleksiyon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.urun-koleksiyon:hover {
    background: #d4a574;
    color: white;
}

.urun-koleksiyon a {
    color: inherit;
    text-decoration: none;
}

.urun-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.urun-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.feature-item i {
    color: #d4a574;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.urun-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.urun-actions .btn-primary,
.urun-actions .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urun-actions .btn-primary {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    border: 2px solid #d4a574;
}

.urun-actions .btn-primary:hover {
    background: linear-gradient(135deg, #c19660, #a67c52);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.urun-actions .btn-secondary {
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
}

.urun-actions .btn-secondary:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Product Content */
.urun-content {
    margin-bottom: 100px;
    text-align: center;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: left;
}

.content-text h1, .content-text h2, .content-text h3 {
    font-family: 'Georgia', serif;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Product Specs */
.urun-specs {
    margin-bottom: 100px;
    background: #f8f9fa;
    padding: 80px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Similar Products */
.similar-products {
    margin-bottom: 80px;
}

.similar-products .products-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Navigation */
.urun-navigation {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}

/* Responsive for Product Detail */
@media (max-width: 992px) {
    .urun-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .urun-hero-image img,
    .urun-placeholder {
        height: 400px;
    }
    
    .urun-hero-info h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .urun-features {
        padding: 25px;
    }
    
    .urun-actions {
        justify-content: center;
    }
    
    .similar-products .products-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .urun-hero-image img,
    .urun-placeholder {
        height: 300px;
    }
    
    .urun-hero-info h2 {
        font-size: 28px;
    }
    
    .urun-description {
        font-size: 16px;
    }
    
    .urun-actions {
        flex-direction: column;
    }
    
    .urun-actions .btn-primary,
    .urun-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .similar-products .products-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .urun-specs {
        padding: 60px 0;
    }
}

/* Koleksiyon Single (Eski stil - backward compatibility) */
.koleksiyon-single {
    padding: 60px 0;
    background-color: #fff;
}

.koleksiyon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.koleksiyon-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.koleksiyon-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.koleksiyon-text h1, .koleksiyon-text h2, .koleksiyon-text h3 {
    font-family: 'Georgia', serif;
    color: #333;
    margin-bottom: 20px;
}

/* Navigation */
.koleksiyon-navigation {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-previous, .nav-next {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    max-width: 200px;
}

.nav-previous:hover, .nav-next:hover {
    color: #d4a574;
    border-color: #d4a574;
    transform: translateY(-2px);
}

.nav-previous span, .nav-next span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .hero-slider {
        height: 550px;
    }
    
    .mutluluk-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mutluluk-text {
        text-align: center;
    }
    
    /* 2. ve 3. Kartlar Responsive */
    .card2-content, .card3-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .card2-text, .card3-text {
        text-align: center;
        order: 1;
    }
    
    .card2-image, .card3-image {
        order: 2;
    }
    
    .hero-card-section {
        padding: 80px 0 50px 0;
    }
    
    .card2-section, .card3-section {
        padding: 35px 0;
    }
    
    .bella-expertise-section {
        padding: 50px 0 70px 0;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .expertise-text {
        text-align: center;
        padding-right: 0;
    }
    
    .expertise-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* 5. Kart Responsive */
    .card5-section {
        padding: 35px 0;
    }
    
    .card5-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .card5-image {
        order: 1;
        height: 300px;
    }
    
    .card5-contact {
        order: 2;
        padding: 40px 30px;
        text-align: center;
    }
    
    /* Simple Footer Tablet */
    .simple-footer-content {
        padding: 0 30px;
    }
    
    /* Koleksiyon Responsive - Tablet */
    .koleksiyon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .koleksiyon-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .bella-content h2,
    .mutluluk-text h2,
    .card2-text h2,
    .card3-text h2,
    .expertise-text h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section .social-links {
        justify-content: center;
    }
    
    .footer-top, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo svg {
        width: 150px;
        height: auto;
    }
    
    .footer-contact h4 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .bella-content h2,
    .mutluluk-text h2,
    .expertise-text h2 {
        font-size: 28px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ===========================
   PAGE STYLES - ABOUT & SUSTAINABILITY
   =========================== */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.page-header .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-header .breadcrumb span {
    margin: 0 10px;
    opacity: 0.7;
}

.page-header .page-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
}

.about-hero {
    margin-bottom: 100px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* About Values */
.about-values {
    margin-bottom: 100px;
}

.about-values .section-title {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item .value-icon {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.value-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* About Experience */
.about-experience {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 0 -50vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 100px;
}

.about-experience h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.about-experience > p {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.about-stat p {
    color: #666;
    font-size: 16px;
}

/* About Team */
.about-team {
    margin-bottom: 100px;
}

.about-team .section-title {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.team-member .position {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* About Contact CTA */
.about-contact-cta {
    background: linear-gradient(135deg, #0066cc, #004499);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.about-contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #0066cc;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sustainability Page Styles */
.sustainability-page {
    padding: 80px 0;
}

.sustainability-hero {
    margin-bottom: 100px;
}

.sustainability-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainability-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sustainability-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sustainability-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Environment Commitments */
.environment-commitments {
    margin-bottom: 100px;
}

.environment-commitments .section-title {
    margin-bottom: 60px;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.commitment-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.commitment-item h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 15px;
}

.commitment-item p {
    color: #666;
    line-height: 1.6;
}

/* Certifications */
.certifications-section {
    margin-bottom: 100px;
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.certifications-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.certifications-text h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 20px;
}

.certifications-text > p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.certificates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cert-info h4 {
    color: #2d5016;
    margin-bottom: 5px;
    font-size: 18px;
}

.cert-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Production Process */
.production-process {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 0 -50vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 100px;
}

.production-process .section-title {
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-number {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2d5016;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Impact Stats */
.impact-stats {
    margin-bottom: 100px;
}

.impact-stats .section-title {
    margin-bottom: 60px;
}

.impact-stat {
    text-align: center;
    padding: 40px 20px;
}

.impact-stat .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.impact-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
}

.impact-stat p {
    color: #666;
    font-size: 16px;
}

/* Future Goals */
.future-goals {
    margin-bottom: 100px;
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.goals-text h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 20px;
}

.goals-text > p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.goals-list {
    list-style: none;
    padding: 0;
}

.goals-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.goals-list li i {
    color: #4CAF50;
    font-size: 18px;
}

.goals-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Common Section Title */
.section-title {
    margin-bottom: 50px;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for About & Sustainability Pages */
@media (max-width: 768px) {
    .about-hero-content,
    .sustainability-hero-content,
    .certifications-content,
    .goals-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header .page-title {
        font-size: 36px;
    }
    
    .about-text h2,
    .sustainability-text h2 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-experience,
    .production-process {
        padding: 60px 0;
    }
    
    .about-contact-cta {
        padding: 40px 20px;
    }
    
    .about-contact-cta h2 {
        font-size: 28px;
    }
}

/* ===========================
   REFERENCES PAGE STYLES
   =========================== */

/* References Page */
.references-page {
    padding: 80px 0;
}

.references-hero {
    margin-bottom: 100px;
}

.references-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.references-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.references-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.references-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* References Grid */
.references-grid-section {
    margin-bottom: 100px;
}

.references-grid-section .section-title {
    margin-bottom: 60px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reference-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.reference-logo {
    padding: 60px 30px 40px;
    background: #fafafa;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.reference-item:hover .reference-logo::before {
    transform: translateX(100%);
}

.reference-logo img {
    max-width: 90%;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.reference-item:hover .reference-logo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

.reference-placeholder {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: #495057;
    padding: 60px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 2px dashed #dee2e6;
}

.reference-info {
    padding: 30px 20px;
    background: white;
}

.reference-info h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.reference-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* References Stats */
.references-stats {
    margin-bottom: 100px;
}

.references-stats-bg {
    background: linear-gradient(135deg, #0066cc, #004499);
    padding: 80px 0;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.references-stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.references-stats .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.references-stats .section-title h2 {
    color: white;
}

.references-stats .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.references-stats .stats-grid {
    position: relative;
    z-index: 2;
}

.reference-stat {
    text-align: center;
    padding: 20px;
}

.reference-stat .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reference-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.reference-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

/* References Contact CTA */
.references-contact-cta {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.references-contact-cta h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.references-contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for References */
@media (max-width: 1200px) {
    .references-grid {
        max-width: 900px;
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .references-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reference-logo {
        height: 180px;
        padding: 40px 20px 30px;
    }
    
    .reference-logo img {
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reference-logo {
        height: 160px;
        padding: 30px 15px 20px;
    }
    
    .reference-logo img {
        max-height: 80px;
    }
    
    .reference-info {
        padding: 20px 15px;
    }
    
    .reference-info h3 {
        font-size: 16px;
    }
    
    .references-text h2 {
        font-size: 32px;
    }
    
    .references-stats-bg {
        padding: 60px 20px;
    }
    
    .references-contact-cta {
        padding: 40px 20px;
    }
    
    .references-contact-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reference-logo {
        height: 140px;
        padding: 25px 10px 15px;
    }
    
    .reference-logo img {
        max-height: 70px;
    }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

/* Contact Hero */
.contact-hero {
    margin-bottom: 100px;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.contact-hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 100px;
}

.contact-info-section .section-title {
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.contact-info-text h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.contact-info-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #c19660;
}

/* Contact Map */
.contact-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 100px;
}

.contact-form-section .section-title {
    margin-bottom: 60px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Open Sans', sans-serif;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

/* Checkbox Label */
.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d4a574;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #d4a574;
    border-color: #d4a574;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #d4a574;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn-primary {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit .btn-primary:hover {
    background: linear-gradient(135deg, #c19660, #a67c52);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.form-submit .btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.form-submit .btn-primary:hover i {
    transform: translateX(5px);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-buttons .btn-primary {
    background: #d4a574;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
}

.cta-buttons .btn-primary:hover {
    background: #c19660;
    border-color: #c19660;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-hero-content,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map {
        height: 400px;
    }
    
    .contact-form-container {
        padding: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-cta {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-text h2 {
        font-size: 32px;
    }
    
    .contact-hero-image img,
    .hero-placeholder {
        height: 300px;
    }
    
    .contact-details {
        gap: 25px;
    }
    
    .contact-detail-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .contact-info-text h4 {
        font-size: 18px;
    }
    
    .contact-info-text p {
        font-size: 14px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkbox-label {
        font-size: 13px;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .map-placeholder i {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .map-placeholder p {
        font-size: 16px;
    }
}

/* ===========================
   CATALOG PAGE STYLES
   =========================== */

/* Catalog Page */
.catalog-page {
    padding: 80px 0;
}

.catalog-hero {
    margin-bottom: 100px;
}

.catalog-hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.catalog-hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.catalog-hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.catalog-hero-buttons .btn-primary {
    background: #0066cc;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.catalog-hero-buttons .btn-primary:hover {
    background: #004499;
    transform: translateY(-2px);
}

.catalog-hero-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.catalog-hero-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.sidebar-placeholder {
    background: #e9ecef;
    color: #6c757d;
    padding: 80px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: 2px dashed #dee2e6;
    line-height: 1.3;
}

/* Catalogs Section */
.catalogs-section {
    margin-bottom: 100px;
}

.catalogs-section .section-title {
    margin-bottom: 60px;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.catalog-item {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.catalog-cover {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.catalog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.catalog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    text-align: center;
    line-height: 1.3;
}

/* Catalog Title on Image */
.catalog-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.catalog-title-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.catalog-item:hover .catalog-title-overlay {
    transform: translateY(-10px);
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.catalog-item:hover .catalog-title-overlay h3 {
    font-size: 20px;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,102,204,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.catalog-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.catalog-overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.catalog-overlay-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
}

.catalog-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.catalog-btn:not(.catalog-btn-outline) {
    background: white;
    color: #0066cc;
}

.catalog-btn:not(.catalog-btn-outline):hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.catalog-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.catalog-btn-outline:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-2px);
}

/* Catalog CTA */
.catalog-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.catalog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,102,204,0.05) 0%, transparent 70%);
}

.catalog-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.catalog-cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.catalog-cta-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.catalog-cta-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.cta-stat {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px);
}

.cta-stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.cta-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/* Responsive Design for Catalog */
@media (max-width: 1200px) {
    .catalogs-grid {
        max-width: 100%;
        gap: 35px;
    }
    
    .catalog-cta {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .catalog-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .catalog-hero-sidebar {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .catalog-cover {
        height: 280px;
    }
    
    .catalog-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .catalog-cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .catalog-cover {
        height: 250px;
    }
    
    .catalog-hero-text h2 {
        font-size: 32px;
    }
    
    .catalog-cta {
        padding: 40px 20px;
    }
    
    .catalog-cta-text h2 {
        font-size: 28px;
    }
    
    .catalog-cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .catalog-btn {
        min-width: 140px;
    }
}
