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

:root {
    /* Vintage Luxury Renk Paleti */
    --primary-color: #8B6914;        /* Koyu altın/bakır */
    --secondary-color: #2C3E50;      /* Lacivert gri */
    --accent-color: #C9A961;         /* Açık altın */
    --dark-color: #1a1a1a;           /* Derin siyah */
    --dark-blue: #1e3a5f;            /* Koyu mavi */
    --light-color: #f5f1e8;          /* Krem beyaz */
    --text-color: #3a3a3a;           /* Koyu gri */
    --text-light: #666666;           /* Açık gri */
    --border-color: #d4c5a9;         /* Altın tonlu kenarlık */
    --success-color: #6b8e23;        /* Zeytin yeşili */
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 16px;
}

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

/* Navigasyon */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 4px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Modern Squarespace Style */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary-color) 50%, var(--dark-blue) 100%);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 105, 20, 0.1) 0%, transparent 50%);
}

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

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(245, 241, 232, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-block;
    padding: 18px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid;
    font-family: 'Arial', sans-serif;
}

.btn-modern.primary {
    background: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

.btn-modern.primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-modern.secondary {
    background: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-modern.secondary:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-modern.light {
    background: white;
    color: var(--dark-color);
    border-color: white;
}

.btn-modern.light:hover {
    background: transparent;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* About Preview Section */
.about-preview {
    padding: 120px 20px;
    background: var(--light-color);
}

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

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

.about-preview-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    border: 2px solid var(--border-color);
}

.about-logo-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-preview-content {
    padding: 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-family: 'Georgia', serif;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: justify;
}

.btn-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Services Section */
.services-section {
    padding: 120px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s;
    background: white;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--light-color);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.features h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(139, 105, 20, 0.2);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(30%);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Page Hero - Modern Style */
.page-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--light-color);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--light-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-family: 'Georgia', serif;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(245, 241, 232, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

/* Products Section - Modern Style */
.products-section-modern {
    padding: 100px 20px;
    background: var(--light-color);
}

/* Products Layout - Sidebar + Grid */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    position: relative;
}

.filters-sticky {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.filters-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-filters-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.type-filters-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-btn-modern {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
}

.filter-btn-modern:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 193, 7, 0.05);
}

.filter-btn-modern.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Products Content Area */
.products-content {
    min-width: 0;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
    
    .filters-sticky {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .filters-sticky {
        position: static;
        margin-bottom: 2rem;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.product-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Varsayılan renk - tanımlanmamış badge'ler için */
    background: linear-gradient(135deg, #95A5A6, #7F8C8D);
}

/* Ana Badge Renkleri - Sabit (5 Grup) */
.badge-yeni {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.badge-populer {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.badge-indirim {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.badge-onerilen {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

/* Dinamik Renk Paletleri - Diğer Badge'ler İçin */
.badge-color-1 {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.badge-color-2 {
    background: linear-gradient(135deg, #E67E22, #D35400);
}

.badge-color-3 {
    background: linear-gradient(135deg, #1ABC9C, #16A085);
}

.badge-color-4 {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

.badge-color-5 {
    background: linear-gradient(135deg, #34495E, #2C3E50);
}

.badge-color-6 {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.badge-color-7 {
    background: linear-gradient(135deg, #16A085, #27AE60);
}

.badge-color-8 {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.badge-color-9 {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.badge-color-10 {
    background: linear-gradient(135deg, #95A5A6, #7F8C8D);
}

/* Product Image Modern */
.product-image-modern {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 20px;
}

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

.product-image-modern .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s;
}

.product-card:hover .product-image-modern .image-placeholder {
    opacity: 0.5;
    transform: scale(1.05);
}

/* Product Content Modern */
.product-content-modern {
    padding: 2rem;
}

.product-category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.product-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-view-details {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><rect width="50" height="50" fill="none"/><circle cx="25" cy="25" r="1" fill="rgba(201,169,97,0.1)"/></svg>');
    background-size: 50px 50px;
}

.product-content {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 100%);
}

.product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 6px 18px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.product-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.product-features {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.product-features li:before {
    content: "◆ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* About Section - Modern Style */
.about-section-modern {
    padding: 100px 20px;
    background: white;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--dark-color);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    font-family: 'Georgia', serif;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Values Section Modern */
.values-section-modern {
    padding: 100px 20px;
    background: var(--light-color);
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card-modern {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.value-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.value-card-modern p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 20px;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mv-card {
    padding: 3rem;
    background: var(--light-color);
    border-left: 4px solid var(--accent-color);
}

.mv-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Contact Section - Modern Style */
.contact-section-modern {
    padding: 100px 20px;
    background: white;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-modern {
    background: var(--light-color);
    padding: 60px;
}

.form-modern {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group-modern label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-modern button {
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.info-icon-modern {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-card-modern h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.info-card-modern p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-modern {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer - Modern Squarespace Style */
.footer-modern {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 80px 20px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--border-color);
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.modal-content {
    background-color: white;
    border-radius: 15px;
    max-width: 1400px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: rotate(90deg);
    border-color: var(--accent-color);
}

.modal-body {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    gap: 2rem;
}

.modal-top-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.modal-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.modal-gallery {
    position: sticky;
    top: 0;
}

.main-image {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 6rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
}

.thumbnail {
    width: 100%;
    height: 110px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(139, 105, 20, 0.5);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.modal-details {
    display: flex;
    flex-direction: column;
}

.modal-details .product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 6px 18px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.modal-details h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.modal-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.modal-description {
    color: var(--text-color);
    line-height: 2;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    text-align: justify;
}

.modal-features {
    background: linear-gradient(135deg, #f8f6f0 0%, var(--light-color) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modal-features h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    column-gap: 2rem;
}

.modal-features li {
    padding: 12px 16px;
    color: var(--text-color);
    background: white;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
}

.modal-features li:hover {
    background: #f0ece0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modal-features li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.modal-specifications {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modal-specifications h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.modal-specifications > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 0;
}

.spec-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    gap: 1.5rem;
}

.spec-row:hover {
    background: var(--light-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
    word-wrap: break-word;
}

.spec-label:after {
    content: '';
    display: none;
}

.spec-value {
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.modal-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.btn-contact-single {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 16px 36px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    transition: all 0.4s;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.btn-contact-single:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.modal-cta .btn-primary {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

.btn-secondary {
    flex: 1;
    display: inline-block;
    background-color: transparent;
    color: var(--dark-color);
    padding: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    transition: all 0.4s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: left 0.4s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.product-card {
    cursor: pointer;
    transition: all 0.4s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(139, 105, 20, 0.25);
}

/* Responsive Design for Modern Layout */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-top-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-bottom-section {
        flex-direction: column;
        gap: 2rem;
    }

    .modal-features ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-specifications > div {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-image {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 98%;
        max-height: 98vh;
    }

    .modal-body {
        padding: 1.5rem;
        gap: 2rem;
    }

    .modal-top-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-bottom-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-gallery {
        position: relative;
    }

    .main-image {
        height: 300px;
    }

    .modal-details {
        padding-right: 0;
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

    .modal-specifications > div {
        grid-template-columns: 1fr;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 12px 16px;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    .modal-features,
    .modal-specifications {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-modern {
        width: 100%;
        padding: 15px 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }

    .modal-cta {
        flex-direction: column;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Image Zoom Overlay */
.image-zoom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.image-zoom-overlay.active {
    display: flex;
}

.image-zoom-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    animation: zoomIn 0.3s;
}

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