﻿/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #dc2626;
    --accent-color: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --header-height: 130px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.page-loading {
    overflow: hidden;
}

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

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    animation: fadeInDown 0.8s ease-out;
    filter: drop-shadow(0 4px 15px rgba(30, 58, 138, 0.2));
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(30, 58, 138, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

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

/* Header Stilleri */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-dot {
    color: var(--secondary-color);
}
.logo {
    display: flex;
    justify-content: flex-start;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 20px 25px;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 10px;
}

/* Matbaa Hizmetleri dropdown (üzerine gelince liste) */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown-wrapper>a .nav-dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.8;
    transition: transform 0.25s ease;
}

.nav-dropdown-wrapper:hover>a .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 100;
    border: 1px solid var(--border-color);
    border-top: none;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 100px 0;
    overflow: hidden;
    color: var(--text-dark);
    text-align: center;
}

.hero-map-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-map-wrapper {
    width: 100%;
    max-width: 900px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    contain: layout style paint;
}

.hero-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

.hero-section .container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInDown 1s ease-out;
    background: var(--white);
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: inline-block;
    max-width: 90%;
    box-sizing: border-box;
}

.hero-logo {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(30, 58, 138, 0.2));
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    font-style: normal;
    margin: 0;
    padding: 0 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '"';
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: Georgia, serif;
}

.hero-tagline::before {
    left: -5px;
}

.hero-tagline::after {
    right: -5px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline-capsule {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 35px;
    letter-spacing: -3px;
    color: var(--text-dark);
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 138, 0.15);
}

.hero-bg-shapes .shape-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-premium-gold {
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
    background: #152c6b;
}

.btn-premium-outline {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.hero-content {
    position: relative;
    margin-top: 10px;
}

.hero-content h1,
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    position: relative;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1::after,
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 1.5s backwards;
}

.hero-content p,
.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-dark);
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
    background: #1e40af;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.btn-secondary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

/* Konuma Git Butonu */
.btn-location-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-location 2s ease-in-out infinite;
}

.btn-location-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20BA5A, #1DA851);
}

.btn-location-directions i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-location-directions:hover i {
    transform: rotate(45deg);
}

@keyframes pulse-location {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Ana İçerik Bölümleri */
.content-section {
    padding: 60px 0;
}

/* Öne Çıkan Ürünler Bölümü - Tam Ekran */
.featured-products-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

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

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    padding: 20px;
}

.text-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.text-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-light);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #b91c1c;
}

/* İletişim Sayfası Hero */
.contact-hero {
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    color: var(--white);
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-hero-title {
    font-family: 'Outfit', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
}

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

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

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid #c5a059;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
}

.contact-card-link:hover .contact-card {
    border-left-color: #b38f48;
}

.directions-hint {
    margin-top: 10px;
    font-size: 12px;
    color: #c5a059;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-card:hover .directions-hint {
    opacity: 1;
    color: #b38f48;
}

.directions-hint i {
    font-size: 14px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c5a059, #b38f48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-family: 'Outfit', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.contact-card a:hover {
    color: #b38f48;
    text-decoration: underline;
}

/* Sağ Kolon (Form) */
.contact-right-column {
    display: flex;
    flex-direction: column;
}

/* Harita Container */
.contact-map-container {
    position: relative;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
}

/* İletişim Formu (Inline) */
.contact-form-inline {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-inline-title {
    font-family: 'Outfit', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.form-inline-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-compact {
    margin-top: 20px;
}

.contact-form-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-compact .form-group {
    margin-bottom: 15px;
}

.contact-form-compact .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form-compact .form-group input,
.contact-form-compact .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
}

.contact-form-compact .btn-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    margin-top: 10px;
}

/* İletişim Form Bölümü */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-modern {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-group label i {
    color: #c5a059;
    font-size: 16px;
}

.required {
    color: var(--secondary-color);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c5a059;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(107, 114, 128, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c5a059, #b38f48);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
    background: linear-gradient(135deg, #b38f48, #c5a059);
}

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

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

/* Alert Mesajları */
.alert {
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: slideDown 0.4s ease;
}

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

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

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-success i {
    color: #10b981;
    font-size: 20px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-error i {
    color: #dc2626;
    font-size: 20px;
}

/* İletişim Formu (Eski - Geriye Uyumluluk) */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Sayfa Hero Bölümleri (Davetiye, Matbaa, Kartvizit) */
.page-hero {
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    color: var(--white);
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

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

.page-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.5s ease;
}

.animate-on-scroll.animated .page-hero-icon {
    animation: bounceIn 1s ease-out;
}

.page-hero-title {
    font-family: 'Outfit', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Ürünler Sayfası Bölümü */
.products-page-section {
    padding: 80px 0;
}

.products-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(197, 160, 89, 0.2);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.product-card-enhanced:hover .product-image-enhanced {
    transform: scale(1.15);
}

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

.product-card-enhanced:hover .product-overlay {
    opacity: 1;
}

.btn-overlay {
    padding: 15px 30px;
    background: var(--white);
    color: #c5a059;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-overlay:hover {
    transform: scale(1.1);
}

.product-info-enhanced {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title-enhanced {
    font-family: 'Outfit', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.product-description-enhanced {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price-enhanced {
    font-family: 'Outfit', serif;
    font-size: 28px;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: #c5a059;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-product:hover {
    background: #b38f48;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-product i {
    transition: transform 0.3s ease;
}

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

/* Hizmet Bilgileri Bölümü */
.services-info-section {
    padding: 80px 0;
}

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

.services-info-content {
    padding: 20px;
}

.services-info-title {
    font-family: 'Outfit', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.services-info-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list {
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(10px);
    padding-left: 10px;
}

.service-item-icon {
    width: 35px;
    height: 35px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: #c5a059;
    color: var(--white);
    transform: scale(1.1);
}

.service-item span,
.service-item-link {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.service-item-link {
    text-decoration: none;
    display: block;
}

.service-item-link:hover {
    color: var(--primary-color);
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #c5a059, #b38f48);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
}

.image-wrapper-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-wrapper-modern img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper-modern:hover img {
    transform: scale(1.1);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 64px;
    color: #c5a059;
}

.empty-state h3 {
    font-family: 'Outfit', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* SSS Sayfası Stilleri */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(197, 160, 89, 0.15);
}

.faq-item.active {
    border-color: #c5a059;
    box-shadow: 0 5px 30px rgba(197, 160, 89, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.faq-question h3 i:first-child {
    color: #c5a059;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-question h3 span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    color: #c5a059;
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--bg-light);
}

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

.faq-answer p {
    padding: 0 30px 25px 65px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.faq-cta h3 {
    font-family: 'Outfit', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.faq-cta p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

select {
    cursor: pointer;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Özellikler Bölümü */
.features-section {
    background: var(--white);
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c5a059, #b38f48);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    background: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.feature-item h3 {
    font-family: 'Outfit', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 64px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-family: 'Outfit', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-cta-primary {
    background: var(--white);
    color: #c5a059;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: #c5a059;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* İstatistikler Bölümü */
.stats-section {
    background: linear-gradient(135deg, #c5a059 0%, #b38f48 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    min-height: 70px;
}

.stat-number {
    font-family: 'Outfit', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.stat-suffix {
    font-family: 'Outfit', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 60px 0 25px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-section {
    position: relative;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Outfit', serif;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c5a059, transparent);
    border-radius: 2px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo-image {
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-logo a:hover .footer-logo-image {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(197, 160, 89, 0.6));
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c5a059;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c5a059;
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 6px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info li:hover {
    transform: translateX(5px);
}

.contact-info i {
    color: #c5a059;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info li:hover i {
    color: #c5a059;
    transform: scale(1.1);
}

.contact-info li span,
.contact-info li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.contact-info li span::before,
.contact-info li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c5a059;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info li:hover span,
.contact-info li:hover a {
    color: #c5a059;
    padding-left: 15px;
}

.contact-info li:hover span::before,
.contact-info li:hover a::before {
    opacity: 1;
    left: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .hero-slider-container {
        height: 350px;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: -50px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        border-bottom: 1px solid var(--border-color);
    }

    /* Mobil: Matbaa dropdown açık liste */
    .nav-dropdown-wrapper .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        padding-top: 4px;
        padding-bottom: 8px;
        display: none;
        min-width: auto;
    }

    .nav-menu.active .nav-dropdown-wrapper .nav-dropdown {
        display: block;
    }

    .nav-dropdown-wrapper .nav-dropdown li a {
        padding: 10px 20px;
        font-size: 13px;
    }

    .nav-dropdown-arrow {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* İletişim Sayfası Mobil */
    .contact-hero {
        padding: 30px 0 20px;
    }

    .contact-hero-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }

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

    .contact-right-column {
        gap: 25px;
    }

    .contact-map-container {
        position: static;
    }

    .map-wrapper {
        height: 350px;
    }

    .contact-form-inline {
        padding: 25px 20px;
    }

    .form-inline-title {
        font-size: 20px;
    }

    .contact-form-compact .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-modern {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* İstatistikler Mobil */
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-suffix {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* FAQ Mobil */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        gap: 10px;
    }

    .faq-answer p {
        padding: 0 20px 20px 50px;
        font-size: 14px;
    }

    .faq-cta {
        padding: 40px 25px;
    }

    .faq-cta h3 {
        font-size: 24px;
    }

    .faq-cta i {
        font-size: 36px;
    }

    /* Özellikler Mobil */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .feature-item h3 {
        font-size: 20px;
    }

    /* CTA Mobil */
    .cta-section {
        padding: 60px 0;
    }

    .cta-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Hero Buttons Mobil */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* Sayfa Hero Mobil */
    .page-hero {
        padding: 30px 0 20px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 15px;
    }

    .page-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 15px;
    }

    /* Ürünler Grid Mobil */
    .products-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    /* Hizmet Bilgileri Mobil */
    .services-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-info-title {
        font-size: 28px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .featured-products-section {
        min-height: calc(100vh - 180px);
        padding: 50px 0;
    }

    .hero-logo-wrapper {
        margin-bottom: 30px;
        padding: 25px 30px;
        width: 90%;
        max-width: 90%;
    }

    .hero-logo {
        max-height: 100px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 16px;
        padding: 0 15px;
        letter-spacing: 0.5px;
    }

    .hero-tagline::before,
    .hero-tagline::after {
        font-size: 24px;
    }

    .hero-map-container {
        margin-top: 30px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-map-wrapper {
        height: 300px;
        max-width: 100%;
    }

    .btn-location-directions {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .hero-overlay {
        height: 65%;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.75) 0%,
                rgba(255, 255, 255, 0.55) 40%,
                rgba(255, 255, 255, 0.25) 70%,
                rgba(255, 255, 255, 0) 100%);
    }

    .btn-location-directions {
        bottom: 60px;
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .btn-location-directions i {
        font-size: 16px;
    }

    .hero-slider-container {
        height: 350px;
        max-width: 100%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .text-content h2 {
        font-size: 28px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 480px;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description {
        min-height: 70px;
    }

    .contact-form {
        padding: 20px;
    }

    /* Footer Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section h4 {
        font-size: 20px;
    }

    .footer-logo-image {
        max-height: 50px;
    }

    .main-footer {
        padding: 50px 0 20px;
    }

    /* WhatsApp Button Mobil */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    /* Mobilde animasyon hızını optimize et */
    .animate-on-scroll {
        transition-duration: 0.6s;
    }

    /* Mobilde hover efektlerini kaldır veya azalt */
    .product-card:hover {
        transform: translateY(-5px);
    }

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

    /* Loading Mobil */
    .loader-logo {
        max-height: 80px;
    }

    .loader-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* Reduced Motion için erişilebilirlik */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

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

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

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

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

/* Animasyon Sınıfları */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.4s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.4s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.4s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.4s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

/* Delay sınıfları */
.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* =============================================================================
   PREMIUM HERO SLIDER SYSTEM (Quiet Luxury & Gold Concept)
   ============================================================================= */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px);
    min-height: 700px;
    background-color: #080c14;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 12s cubic-bezier(0.1, 1, 0.1, 1);
    z-index: 0;
}

.hero-slide.active .slide-bg {
    transform: scale(1.15);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(8, 12, 20, 0.98) 0%, 
        rgba(8, 12, 20, 0.88) 35%, 
        rgba(8, 12, 20, 0.5) 65%, 
        rgba(8, 12, 20, 0.2) 100%
    );
    z-index: 1;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.slide-text {
    color: #ffffff;
    max-width: 650px;
}

.slide-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #d4af37; /* Elegant Gold */
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(45px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.8s ease 0.5s;
}

.slide-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(45px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s, opacity 0.8s ease 0.7s;
}

.slide-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s, opacity 0.8s ease 0.9s;
}

.hero-slide.active .slide-tagline,
.hero-slide.active .slide-title,
.hero-slide.active .slide-desc,
.hero-slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9) rotate(-3deg) translateX(40px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 1.2s ease 0.5s;
}

.hero-slide.active .slide-image {
    transform: scale(1) rotate(0deg) translateX(0);
    opacity: 1;
}

.mockup-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 50px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 12, 20, 0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.15);
}

.mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15) 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.15) 70%, 
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.mockup-card:hover .mockup-shine {
    animation: shineEffect 1.2s ease-in-out forwards;
}

@keyframes shineEffect {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

/* Slider Kontrolleri (Oklar & Noktalar) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #080c14;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.slider-arrow-left {
    left: 40px;
}

.slider-arrow-right {
    right: 40px;
}

.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 35px;
    height: 4px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-indicators .indicator.active {
    background: #d4af37;
    width: 55px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* responsive uyumluluk */
@media (max-width: 991px) {
    .hero-slider-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .slide-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        justify-items: center;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .slide-actions {
        justify-content: center;
    }

    .slide-overlay {
        background: linear-gradient(180deg, 
            rgba(8, 12, 20, 0.98) 0%, 
            rgba(8, 12, 20, 0.92) 50%, 
            rgba(8, 12, 20, 0.7) 100%
        );
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .slider-arrow-left {
        left: 15px;
    }

    .slider-arrow-right {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .slide-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .slide-actions .btn-premium-gold,
    .slide-actions .btn-premium-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .mockup-card {
        max-width: 320px;
    }

    .slider-arrow {
        display: none; /* Mobilde okları gizleyip sadece indicator kullanalım */
    }

    .slider-indicators {
        bottom: 25px;
    }
}

/* Product Card Hover Animations */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    transition: transform 0.3s ease;
    will-change: transform;
}

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

.product-card .btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-card:hover .btn {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Service Cards Icon Animation */
.product-card i {
    transition: all 0.4s ease;
    display: inline-block;
}

.product-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #c5a059;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.5s ease;
    transform: scale(1);
}

.service-icon-bg-1,
.service-icon-bg-2,
.service-icon-bg-3 {
    background: #c5a059;
}

.service-card:hover .service-icon-bg {
    transform: scale(1.2);
    opacity: 0.2;
}

.service-icon {
    position: relative;
    font-size: 48px;
    z-index: 2;
    transition: all 0.5s ease;
}

.service-card .service-icon {
    color: #c5a059;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-family: 'Outfit', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #c5a059;
}

.service-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    flex-grow: 1;
    min-height: 80px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-shrink: 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li i {
    color: #c5a059;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #c5a059;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
    flex-shrink: 0;
    margin-top: auto;
}

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

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

.service-btn span {
    position: relative;
    z-index: 1;
}

.service-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
    background: #b38f48;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Section Title Animation */
.section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.8s ease;
}

.animate-on-scroll.animated .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* Image Wrapper Animation */
.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(220, 38, 38, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover::after {
    opacity: 1;
}

.image-wrapper img {
    transition: transform 0.3s ease;
    will-change: transform;
}

.image-wrapper:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Text Content Animation */
.text-content h2 {
    position: relative;
}

.text-content h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease;
}

.animate-on-scroll.animated .text-content h2::before {
    transform: scaleY(1);
}

/* Button Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
    }
}

.hero-content .btn {
    animation: slideUp 0.4s ease-out 0.4s backwards;
}

/* Stagger Animation for Product Cards */
.products-grid .product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.products-grid .product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.products-grid .product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.products-grid .product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.products-grid .product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.products-grid .product-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Header Animation */
.main-header {
    animation: slideUp 0.6s ease-out;
}


/* Loading State */
.page-loading {
    overflow: hidden;
}

.page-loaded .animate-on-scroll {
    opacity: 0;
}

/* Dekoratif Elementler */
.decorative-wave {
    position: relative;
    overflow: hidden;
}

.decorative-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-light) 100%);
    z-index: 1;
}

/* Yönetim Paneli Stilleri */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.admin-header h1 {
    font-family: 'Outfit', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.admin-nav {
    background: var(--white);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary-color);
    color: var(--white);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
}

table tr:hover {
    background: var(--bg-light);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Admin Form Modern Tasarım */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.admin-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.admin-form-modern {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-section {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.form-section-header i {
    color: var(--primary-color);
    font-size: 20px;
}

.form-section-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
}

.form-group .required {
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: rgba(107, 114, 128, 0.6);
}

.form-control select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a8a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-checkbox-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-checkbox-item:hover {
    background: rgba(30, 58, 138, 0.05);
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin: 0;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-input:checked+.checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-input:checked+.checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
}

.checkbox-content {
    flex: 1;
}

.checkbox-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 3px;
}

.checkbox-content small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
}

.form-actions {
    padding: 25px 30px;
    background: var(--bg-light);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .admin-page-header {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
        padding: 20px;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PREMIUM HERO HEADER, SERVICE, STATS & FOOTER SYSTEM (LIGHT LUXURY OVERRIDES)
   ========================================================================== */

/* 1. Dynamic Solid Sticky Premium Header (Light Theme) */
.main-header {
    position: sticky !important;
    top: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.04) !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12) !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

/* Ensure clean logo display */
.main-header .logo-image {
    max-height: 56px !important;
    transition: all 0.3s ease !important;
}

.main-header .header-top {
    padding: 15px 0;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08) !important;
}

.main-header .nav-menu li a {
    color: #2c2b29 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.main-header .nav-menu li a:hover,
.main-header .nav-menu li a.active {
    color: #c5a059 !important;
}

.main-header .mobile-menu-toggle {
    color: #2c2b29 !important;
}

/* Dynamic Scroll State (Shrinks header slightly for modern, elegant look) */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08) !important;
}

.main-header.scrolled .header-top {
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.04) !important;
}

.main-header.scrolled .logo-image {
    max-height: 44px !important;
}

.main-header .nav-dropdown {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.main-header .nav-dropdown li a {
    color: #4a4947 !important;
}

.main-header .nav-dropdown li a:hover {
    background: rgba(197, 160, 89, 0.04);
    color: #c5a059 !important;
}

/* Page spacing configurations for clean solid header flow */
body:not(.page-loading) {
    margin-top: 0 !important;
}

.main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 2. Light Champagne Hero Slider Overrides */
.hero-slider-section {
    background: radial-gradient(circle at 75% 30%, #ffffff 0%, #faf8f5 55%, #f5efe1 100%) !important;
    position: relative;
}

/* Elegant radial light texture overlay */
.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.04) 1.2px, transparent 1.2px) !important;
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}

/* Soften and blur the background stretched images to make them clean watermarks without any blurry massive texts */
.slide-bg {
    opacity: 0.04 !important;
    filter: blur(30px) !important;
    transform: scale(1.15) !important;
}

.slide-overlay {
    background: linear-gradient(90deg, 
        rgba(250, 248, 245, 0.98) 0%, 
        rgba(250, 248, 245, 0.90) 35%, 
        rgba(250, 248, 245, 0.40) 65%, 
        rgba(250, 248, 245, 0) 100%
    ) !important;
    z-index: 2;
}

.slide-tagline {
    color: #c5a059 !important;
}

.slide-title {
    color: #2c2b29 !important;
    text-shadow: none !important;
}

.slide-desc {
    color: #5a5957 !important;
}

/* Elegant double border physical luxury frame mockup cards */
.mockup-card {
    background: #ffffff !important;
    border: 4px solid #ffffff !important;
    outline: 1px solid rgba(197, 160, 89, 0.25) !important;
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.15), 0 8px 25px rgba(0, 0, 0, 0.04) !important;
    border-radius: 20px !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.mockup-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    outline-color: #c5a059 !important;
    box-shadow: 0 35px 80px rgba(197, 160, 89, 0.22), 0 12px 35px rgba(0, 0, 0, 0.06) !important;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    color: #2c2b29 !important;
}

.slider-arrow:hover {
    background: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3) !important;
}

.slider-indicators .indicator {
    background: rgba(0, 0, 0, 0.08) !important;
}

.slider-indicators .indicator.active {
    background: #c5a059 !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4) !important;
}

@media (max-width: 991px) {
    .slide-overlay {
        background: linear-gradient(180deg, 
            rgba(250, 248, 245, 0.98) 0%, 
            rgba(250, 248, 245, 0.92) 50%, 
            rgba(250, 248, 245, 0.70) 100%
        ) !important;
    }
}

/* 3. Premium Services Section (Light Ivory & Cream Theme) */
.premium-services-section {
    background: radial-gradient(circle at top, #faf8f4 0%, #f3efe6 100%) !important;
    padding: 100px 0 !important;
    color: #2c2b29 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    position: relative;
}

.premium-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1.5px, transparent 1.5px) !important;
    background-size: 32px 32px;
    pointer-events: none;
}

.premium-services-section .section-title {
    color: #1a1918 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(32px, 5vw, 42px) !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
}

.premium-services-section .section-subtitle {
    color: #b38f48 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    margin-bottom: 60px !important;
    opacity: 0.9;
}

.premium-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.premium-services-section .service-card {
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.16) !important;
    border-radius: 20px !important;
    padding: 50px 35px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.premium-services-section .service-card:hover {
    transform: translateY(-8px) !important;
    border-color: #c5a059 !important;
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.12), 0 10px 20px rgba(0, 0, 0, 0.03) !important;
}

.premium-services-section .service-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-services-section .service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08) !important;
    transition: all 0.3s ease;
}

.premium-services-section .service-card:hover .service-icon-bg {
    transform: scale(1.15);
    background: rgba(197, 160, 89, 0.15) !important;
}

.premium-services-section .service-icon {
    color: #c5a059 !important;
    font-size: 28px !important;
    position: relative;
    z-index: 2;
}

.premium-services-section .service-title {
    color: #1a1918 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.2px !important;
}

.premium-services-section .service-description {
    color: #5a5957 !important;
    font-size: 14.5px !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.premium-services-section .service-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 35px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    border-top: 1px solid rgba(197, 160, 89, 0.1) !important;
    padding-top: 25px !important;
    width: 100% !important;
}

.premium-services-section .service-features li {
    color: #2c2b29 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.premium-services-section .service-features li i {
    color: #c5a059 !important;
    font-size: 12px !important;
}

.premium-services-section .service-btn {
    background: transparent !important;
    border: 2px solid rgba(197, 160, 89, 0.35) !important;
    color: #b38f48 !important;
    padding: 15px 30px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: center !important;
    width: 100% !important;
    text-decoration: none !important;
}

.premium-services-section .service-btn:hover {
    background: #c5a059 !important;
    color: #ffffff !important;
    border-color: #c5a059 !important;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* 4. Premium Stats Section (Sıcak Alabaster & Cream Theme) */
.premium-stats-section {
    background: #eae5da !important;
    padding: 85px 0 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.12) !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12) !important;
    position: relative;
    overflow: hidden;
}

.premium-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1.5px, transparent 1.5px) !important;
    background-size: 24px 24px;
    pointer-events: none;
}

.premium-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.premium-stats-section .stat-card {
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.12) !important;
    padding: 35px 30px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.04) !important;
    text-align: center;
}

.premium-stats-section .stat-card:hover {
    border-color: rgba(197, 160, 89, 0.35) !important;
    background: #ffffff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.09) !important;
}

.premium-stats-section .stat-icon {
    color: rgba(197, 160, 89, 0.4) !important;
    font-size: 32px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease;
}

.premium-stats-section .stat-card:hover .stat-icon {
    color: #b38f48 !important;
}

.premium-stats-section .stat-number {
    color: #b38f48 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(38px, 4vw, 48px) !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
}

.premium-stats-section .stat-suffix {
    color: #b38f48 !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-left: 2px !important;
}

.premium-stats-section .stat-label {
    color: #4a4947 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    margin-top: 8px !important;
}

/* 5. Premium Footer (Light Champagne Brand Layout) */
.premium-footer {
    background: #f5f2eb !important;
    color: #4a4947 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.15) !important;
    padding: 85px 0 35px !important;
}

.premium-footer .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.premium-footer .footer-logo-image {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    background: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.05);
}

.premium-footer p {
    font-size: 14.5px !important;
    line-height: 1.8 !important;
    color: #5a5957 !important;
}

.premium-footer h4 {
    color: #1a1918 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 28px !important;
    letter-spacing: 0.5px !important;
    position: relative;
    padding-bottom: 12px;
}

.premium-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #c5a059;
    border-radius: 2px;
}

.premium-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-footer ul li a {
    color: #4a4947 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 14.5px !important;
    display: inline-block;
}

.premium-footer ul li a:hover {
    color: #b38f48 !important;
    transform: translateX(4px);
}

.premium-footer .contact-info li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #2c2b29 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px;
}

.premium-footer .contact-info li i {
    color: #c5a059 !important;
    font-size: 14px !important;
    margin-top: 4px;
    flex-shrink: 0;
}

.premium-footer .contact-info li a {
    color: #2c2b29 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.premium-footer .contact-info li a:hover {
    color: #c5a059 !important;
}

.premium-footer .footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.12) !important;
    margin-top: 60px !important;
    padding-top: 35px !important;
    text-align: center !important;
    font-size: 13px !important;
    color: #6b6a67 !important;
    letter-spacing: 0.5px;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .premium-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .premium-services-section .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PREMIUM TITLE DECORATION & BRAND NEW SECTIONS OVERRIDES
   ========================================================================== */

/* 1. Hide default red/blue underlines on templates */
.premium-services-section .section-title::before,
.premium-services-section .section-title::after,
.featured-products-section .section-title::before,
.featured-products-section .section-title::after,
.premium-process-section .section-title::before,
.premium-process-section .section-title::after {
    display: none !important;
}

.premium-services-section .section-title,
.featured-products-section .section-title,
.premium-process-section .section-title {
    position: relative;
    padding-bottom: 25px !important;
    text-align: center;
}

/* Elegant gold leaf diamond divider */
.premium-services-section .section-title::after,
.featured-products-section .section-title::after,
.premium-process-section .section-title::after {
    content: '✧  ✦  ✧' !important;
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px !important;
    color: #c5a059 !important;
    letter-spacing: 6px !important;
    font-weight: 300 !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
}

/* 2. Premium Process Section (Light Luxury) */
.premium-process-section {
    background: #ffffff !important;
    padding: 100px 0 !important;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.12) !important;
}

.premium-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.04) 1.5px, transparent 1.5px) !important;
    background-size: 40px 40px;
    pointer-events: none;
}

.premium-process-section .section-title {
    color: #1a1918 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(32px, 5vw, 42px) !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
}

.premium-process-section .section-subtitle {
    color: #b38f48 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    margin-bottom: 80px !important;
    opacity: 0.9;
    text-align: center;
}

.premium-process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

/* Elegant connector line between steps on desktop */
@media (min-width: 992px) {
    .premium-process-section .process-grid::before {
        content: '';
        position: absolute;
        top: 35%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(to right, rgba(197, 160, 89, 0.02), rgba(197, 160, 89, 0.25) 50%, rgba(197, 160, 89, 0.02));
        z-index: 1;
    }
}

.premium-process-section .process-step-card {
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.12) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.03) !important;
}

.premium-process-section .process-step-card:hover {
    transform: translateY(-8px) !important;
    border-color: #c5a059 !important;
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.1) !important;
}

.premium-process-section .step-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.25);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.premium-process-section .process-step-card:hover .step-badge {
    color: #c5a059;
}

.premium-process-section .step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05) !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    font-size: 24px;
    color: #c5a059;
    transition: all 0.3s ease;
}

.premium-process-section .process-step-card:hover .step-icon-wrapper {
    background: #c5a059 !important;
    color: #ffffff !important;
    border-color: #c5a059 !important;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2);
    transform: scale(1.05);
}

.premium-process-section .step-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1918 !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.2px !important;
}

.premium-process-section .step-desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #5a5957 !important;
}

/* 3. Featured Products Overrides (Light Luxury Theme) */
.featured-products-section {
    background: radial-gradient(circle at top, #faf8f4 0%, #f7f4ee 100%) !important;
    padding: 100px 0 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.12) !important;
    position: relative;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.05) 1.5px, transparent 1.5px) !important;
    background-size: 32px 32px;
    pointer-events: none;
}

.featured-products-section .section-title {
    color: #1a1918 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(32px, 5vw, 42px) !important;
    font-weight: 700 !important;
    margin-bottom: 60px !important;
    letter-spacing: -0.5px !important;
    text-align: center;
}

.featured-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.featured-products-section .product-card {
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex;
    flex-direction: column;
}

.featured-products-section .product-card:hover {
    transform: translateY(-8px) !important;
    border-color: #c5a059 !important;
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.12), 0 10px 20px rgba(0, 0, 0, 0.02) !important;
}

.featured-products-section .product-image {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08) !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.featured-products-section .product-card:hover .product-image {
    transform: scale(1.05);
}

.featured-products-section .product-info {
    padding: 30px 25px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-products-section .product-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1918 !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.2px !important;
}

.featured-products-section .product-description {
    color: #5a5957 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    flex-grow: 1;
}

.featured-products-section .product-price {
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #b38f48 !important;
    margin-bottom: 20px !important;
}

.featured-products-section .product-info .btn {
    background: transparent !important;
    border: 2px solid rgba(197, 160, 89, 0.35) !important;
    color: #b38f48 !important;
    padding: 12px 25px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease !important;
    text-align: center;
    text-decoration: none !important;
    display: block;
}

.featured-products-section .product-info .btn:hover {
    background: #c5a059 !important;
    color: #ffffff !important;
    border-color: #c5a059 !important;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25) !important;
}