/* Cleopatra Ink Berlin - Main CSS - Professional Design */

:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --secondary: #666;
    --accent: #d4af37;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --light-gray-2: #fafafa;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo a:hover .logo-img {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background: var(--white);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu nav a:hover {
    background: var(--light-gray);
}

/* ===== HERO SECTION - PROFESSIONAL ===== */
.hero-section-pro {
    position: relative;
    min-height: 700px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('../images/general/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content-pro {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
}

.hero-title-pro {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-text {
    font-style: italic;
    color: var(--accent);
    display: block;
}

.hero-subtitle-pro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    font-size: 20px;
    line-height: 1;
}

.review-text {
    font-size: 14px;
    line-height: 1.4;
}

.review-text strong {
    font-size: 18px;
    color: var(--accent);
}

.customer-photos {
    display: flex;
    align-items: center;
}

.customer-photos img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    object-fit: cover;
}

.customer-photos img:first-child {
    margin-left: 0;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.btn-cta-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--accent);
    padding: 30px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
}

.trust-icon {
    font-size: 36px;
    line-height: 1;
}

.trust-item h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-lg {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 15px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-us-card p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== SERVICES SECTION - MODERN ===== */
.services-section-modern {
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-icon {
    font-size: 80px;
    opacity: 0.3;
}

.service-content-modern {
    padding: 30px;
}

.service-content-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content-modern p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
}

/* ===== CTA SECTION - STRONG ===== */
.cta-section-strong {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content-strong {
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content-strong h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-strong p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-features {
    display: flex;
    gap: 25px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-features span {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FIXED BUTTONS ===== */
.fixed-buttons-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    transition: var(--transition);
    border-radius: 50%;
    display: block;
}

.maps-btn {
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.4);
}

.maps-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.6);
}

.whatsapp-btn {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px var(--shadow-dark);
    transition: var(--transition);
}

.go-to-top:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.go-to-top.visible {
    display: flex;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 8px 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.contact-info span {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== FAQ SECTION - HÄUFIGE FRAGEN ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-header .section-title-lg {
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.faq-card {
    background: var(--light-gray-2);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.faq-card:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-card p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

/* FAQ CTA Footer */
.faq-cta {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-gray-2) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.faq-cta-text {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-cta-text strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.faq-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-faq-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.btn-faq-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-faq-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-faq-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== GALLERY SHOWCASE - ANİMASYONLU GALERİ ===== */
.gallery-showcase {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.gallery-header .section-title-lg {
    margin-bottom: 20px;
}

.gallery-subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Gallery Reviews Badge */
.gallery-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    object-fit: cover;
    box-shadow: 0 2px 8px var(--shadow);
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.gallery-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray-2);
    padding: 10px 20px;
    border-radius: 25px;
}

.gallery-rating .stars {
    font-size: 18px;
    line-height: 1;
}

.gallery-rating span {
    font-size: 14px;
    color: var(--primary);
}

.gallery-rating strong {
    font-size: 18px;
    color: var(--accent);
}

/* Gallery CTA Buttons */
.gallery-cta-top {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gallery-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.btn-gallery-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gallery-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-gallery-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Gallery Scroll Container */
.gallery-scroll {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-scroll:last-of-type {
    margin-bottom: 0;
}

/* Gallery Row */
.gallery-row {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* Animasyon - Üst satır SOLA kayıyor */
.gallery-row-left {
    animation: scrollLeft 40s linear infinite;
}

/* Animasyon - Alt satır SAĞA kayıyor */
.gallery-row-right {
    animation: scrollRight 40s linear infinite;
}

/* Hover'da animasyon dursun */
.gallery-row:hover {
    animation-play-state: paused;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    min-width: 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Label */
.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Keyframe Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== HOW IT WORKS - NASIL ÇALIŞIYORUZ ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.hiw-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.hiw-header .section-title-lg {
    margin-bottom: 20px;
}

.hiw-subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* HIW CTA Buttons */
.hiw-cta-top {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hiw-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.btn-hiw-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hiw-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-hiw-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* HIW Steps Grid */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* HIW Step Card */
.hiw-step {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.hiw-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* HIW Image with Badge */
.hiw-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.hiw-step:hover .hiw-image img {
    transform: scale(1.05);
}

/* Number Badge */
.hiw-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 4px solid var(--white);
}

/* HIW Content */
.hiw-content {
    padding: 30px;
}

.hiw-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.hiw-content p {
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* HIW Link */
.hiw-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hiw-link:hover {
    color: var(--primary);
    gap: 10px;
}

/* ===== TESTIMONIALS - MÜŞTERİ YORUMLARI ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.testimonials-header .section-title-lg {
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
}

/* Slider Container */
.testimonials-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

/* Stars */
.testimonial-stars {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1;
}

/* Testimonial Text */
.testimonial-text {
    color: var(--primary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 120px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--secondary);
}

/* Testimonial Image */
.testimonial-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.testimonials-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-prev {
    left: 10px;
}

.testimonials-next {
    right: 10px;
}

.testimonials-nav svg {
    pointer-events: none;
}

/* ===== BOOKING SECTION - STEP BY STEP REZERVASYON ===== */
.booking-section {
    padding: 100px 0;
    background: var(--light-gray-2);
    scroll-margin-top: 100px;
}

.booking-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.booking-header .section-title-lg {
    margin-bottom: 20px;
}

.booking-subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
}

/* Booking Form Container */
.booking-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form {
    position: relative;
}

/* Booking Steps */
.booking-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step Title */
.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Service Options Grid (Step 1) */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-card {
    background: var(--light-gray-2);
    border: 3px solid transparent;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-option input[type="radio"]:checked + .option-card {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.option-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.option-card p {
    font-size: 14px;
    color: var(--secondary);
}

/* Form Section */
.form-section {
    margin-bottom: 35px;
}

.section-label-form {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 16px;
}

/* Icon Grid (Step 2) */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.icon-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.icon-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.icon-option {
    cursor: pointer;
}

.icon-option input[type="radio"] {
    display: none;
}

.icon-card {
    background: var(--light-gray-2);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 100px;
}

.icon-option input[type="radio"]:checked + .icon-card {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.icon-emoji {
    font-size: 38px;
    line-height: 1;
}

.icon-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Privacy Checkbox */
.booking-privacy {
    margin: 25px 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-checkbox span {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.6;
}

/* Booking Navigation Buttons */
.booking-nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-booking-next,
.btn-booking-back,
.btn-booking-submit {
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-booking-next {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    flex: 1;
}

.btn-booking-next:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-booking-back {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-booking-back:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-booking-submit {
    background: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
    flex: 1;
    justify-content: center;
}

.btn-booking-submit:hover {
    background: #1ea34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Fixed Booking Button - Sol Alt (Maps ve WhatsApp üstünde) */
.fixed-booking-btn {
    position: fixed;
    bottom: 200px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
    font-size: 28px;
}

.fixed-booking-btn:hover {
    background: #c29d2e;
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
}

/* ===== BLOG SLIDER SECTION ===== */
.blog-slider-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-slider-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.blog-slider-header .section-title-lg {
    margin-bottom: 20px;
}

/* Blog Slider Container */
.blog-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.blog-slider {
    overflow: hidden;
    position: relative;
}

.blog-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Blog Card */
.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.3;
}

/* Blog Content */
.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--secondary);
}

.blog-date,
.blog-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more:hover {
    color: var(--primary);
    gap: 10px;
}

/* Blog Navigation */
.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.blog-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: 10px;
}

.blog-next {
    right: 10px;
}

.blog-nav svg {
    pointer-events: none;
}

/* Blog View All Button */
.blog-view-all {
    text-align: center;
    margin-top: 50px;
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-blog-all:hover {
    background: var(--primary);
    color: var(--white);
    gap: 15px;
}

/* ===== TATTOO PAGE - PROFESSYONEL TATTOO SAYFASI ===== */

/* Tattoo Hero Section */
.tattoo-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/tattoo-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.tattoo-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content-tattoo {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span:last-child {
    color: var(--white);
}

/* Page Title */
.page-title-hero {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.page-subtitle-hero {
    font-size: 22px;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Trust Stats Section */
.trust-stats {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary);
}

/* Tattoo Styles Section */
.tattoo-styles-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.style-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.style-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.style-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.style-card p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.style-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.style-link:hover {
    color: var(--primary);
    gap: 10px;
}

/* Process Timeline Section */
.tattoo-process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: var(--accent);
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
}

/* Pricing Section */
.tattoo-pricing-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-size {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 30px;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--secondary);
}

.pricing-features li:first-child {
    border-top: 1px solid var(--border);
}

.pricing-note {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.pricing-note p {
    margin: 0;
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--primary);
}

/* FAQ Section */
.tattoo-faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray-2);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-gray-2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
}

/* CTA Section */
.tattoo-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
}

.cta-content-box {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content-box p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-outline {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== PIERCING PAGE - PROFESSYONEL PIERCING SAYFASI ===== */

/* Piercing Hero Section */
.piercing-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/piercing-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.hero-content-piercing {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Piercing Types Section */
.piercing-types-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.piercing-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.piercing-type-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.piercing-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.piercing-type-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.piercing-type-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.piercing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.piercing-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 20px;
}

.piercing-list li:before {
    content: '💎';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.piercing-list li:last-child {
    border-bottom: none;
}

.piercing-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.piercing-link:hover {
    color: var(--primary);
    gap: 10px;
}

/* Jewelry Section */
.jewelry-section {
    padding: 100px 0;
    background: var(--white);
}

.jewelry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.jewelry-card {
    background: var(--light-gray-2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.jewelry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.jewelry-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.jewelry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.jewelry-card p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
}

/* Process Timeline - Piercing */
.piercing-process-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

/* Aftercare Section */
.aftercare-section {
    padding: 100px 0;
    background: var(--white);
}

.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.aftercare-box {
    background: var(--light-gray-2);
    border-radius: 20px;
    padding: 50px 40px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.aftercare-do {
    border-color: #22c55e;
}

.aftercare-dont {
    border-color: #ef4444;
}

.aftercare-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.aftercare-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.aftercare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aftercare-list li {
    padding: 12px 0 12px 30px;
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
    position: relative;
}

.aftercare-do .aftercare-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
}

.aftercare-dont .aftercare-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

/* Healing Times */
.aftercare-healing {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-gray-2);
    border-radius: 16px;
}

.aftercare-healing h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.healing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.healing-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.healing-item strong {
    font-size: 15px;
    color: var(--primary);
}

.healing-item span {
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
}

/* Pricing Table */
.piercing-pricing-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.pricing-table {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.pricing-col {
    padding: 20px 30px;
    font-size: 15px;
}

.pricing-header .pricing-col {
    font-size: 16px;
}

.pricing-category {
    border-bottom: 2px solid var(--accent);
}

.category-title {
    padding: 20px 30px;
    background: var(--light-gray-2);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.pricing-row:nth-child(even) {
    background: var(--light-gray-2);
}

/* FAQ Section - Piercing */
.piercing-faq-section {
    padding: 100px 0;
    background: var(--white);
}

/* CTA Section - Piercing */
.piercing-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
}

/* ===== WALK-IN PAGE - SPONTAN OHNE TERMIN ===== */

/* Walk-in Hero Section */
.walkin-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/walkin-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.hero-content-walkin {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Walk-in Intro Section */
.walkin-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text {
    padding-right: 20px;
}

.intro-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 20px;
}

.intro-paragraph:last-of-type {
    margin-bottom: 0;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Walk-in How it Works Section */
.walkin-how-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.walkin-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.walkin-step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.walkin-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.step-number-big {
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 30px;
    border: 5px solid var(--white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.walkin-step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.walkin-step-card p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
}

/* Opening Hours Section */
.walkin-hours-section {
    padding: 100px 0;
    background: var(--white);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-info {
    padding-right: 20px;
}

.hours-table {
    margin: 40px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid var(--border);
    background: var(--light-gray-2);
    margin-bottom: 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.hours-row:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.hours-row .day {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

.hours-row .time {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.hours-note {
    margin: 30px 0;
    padding: 25px 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.hours-note p {
    margin: 0;
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.7;
}

.hours-note strong {
    color: var(--primary);
}

.hours-cta {
    margin-top: 30px;
}

.btn-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-hours:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hours-image {
    position: relative;
}

.hours-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* What's Possible Section */
.walkin-possible-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.possible-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.possible-box {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.possible-yes {
    border-color: #22c55e;
}

.possible-no {
    border-color: #f59e0b;
}

.possible-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.possible-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.possible-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.possible-list li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.6;
    position: relative;
}

.possible-yes .possible-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
}

.possible-no .possible-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 700;
    font-size: 18px;
}

/* Flash Designs Section */
.flash-designs-section {
    padding: 100px 0;
    background: var(--white);
}

.flash-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.flash-cat-item {
    background: var(--light-gray-2);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.flash-cat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.flash-cat-icon {
    font-size: 56px;
    margin-bottom: 15px;
    line-height: 1;
}

.flash-cat-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.flash-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-flash {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-flash:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    gap: 15px;
}

/* Tips Section */
.walkin-tips-section {
    padding: 100px 0;
    background: var(--light-gray-2);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.tip-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.tip-card p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
}

/* FAQ Section - Walk-in */
.walkin-faq-section {
    padding: 100px 0;
    background: var(--white);
}

/* CTA Section - Walk-in */
.walkin-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-large {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== GALLERY PAGE - GALERIE SHOWCASE ===== */

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.hero-content-gallery {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Gallery Filters Section */
.gallery-filters-section {
    padding: 50px 0 30px;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-tab {
    padding: 14px 35px;
    background: var(--light-gray-2);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: #f0f0f0;
    border-color: var(--accent);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Sub Filters */
.sub-filters {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.sub-filters.active {
    display: block;
}

.sub-filter-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sub-filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.sub-filter-btn:hover {
    background: var(--light-gray-2);
    border-color: var(--accent);
    color: var(--primary);
}

.sub-filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 60px 0 100px;
    background: var(--light-gray-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    animation: fadeIn 0.6s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    margin-bottom: 50px;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-info p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-zoom-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gallery-zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Gallery Empty State */
.gallery-empty {
    text-align: center;
    padding: 100px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 25px;
    opacity: 0.3;
}

.gallery-empty h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.gallery-empty p {
    font-size: 17px;
    color: var(--secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    color: var(--white);
    max-width: 700px;
}

.lightbox-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.lightbox-info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

/* Gallery CTA Section */
.gallery-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
}

/* Gallery Empty içinde grid */
.gallery-empty {
    text-align: center;
    padding: 100px 20px;
    width: 100%;
}

/* ===== BLOG PAGE - LISTING & DETAIL ===== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.hero-content-blog {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Blog Filters Section */
.blog-filters-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
}

.filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.category-chip {
    padding: 10px 20px;
    background: var(--light-gray-2);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-chip:hover {
    background: #f0f0f0;
    border-color: var(--accent);
    color: var(--primary);
}

.category-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.category-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.category-chip.active .category-count {
    background: rgba(0, 0, 0, 0.15);
}

/* Blog Search */
.blog-search {
    min-width: 300px;
}

.search-form {
    position: relative;
    display: flex;
}

.search-input {
    flex: 1;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    background: #c29d2e;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: var(--light-gray-2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--secondary);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date,
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-card:hover .read-more {
    gap: 10px;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 100px 20px;
}

.blog-empty .empty-icon {
    font-size: 80px;
    margin-bottom: 25px;
    opacity: 0.3;
}

.blog-empty h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.blog-empty p {
    font-size: 17px;
    color: var(--secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-number:hover {
    background: var(--light-gray-2);
    border-color: var(--accent);
}

.pagination-number.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    color: var(--secondary);
}

/* Newsletter Section */
.blog-newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: var(--light-gray-2);
    border-radius: 20px;
    border: 2px solid var(--border);
}

.newsletter-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.newsletter-box p {
    font-size: 17px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #c29d2e;
}

/* ===== BLOG DETAIL PAGE ===== */

/* Blog Detail Hero */
.blog-detail-hero {
    padding: 140px 0 60px;
    background: #3b93e1;
}

.blog-detail-category {
    margin-bottom: 20px;
}

.blog-detail-category a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.blog-detail-category a:hover {
    background: #c29d2e;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
}

.blog-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--secondary);
}

/* Blog Detail Content */
.blog-detail-content-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-main-content {
    max-width: 800px;
}

.blog-featured-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
}

.blog-content-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 40px 0 20px;
}

.blog-content-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0 15px;
}

.blog-content-text p {
    margin-bottom: 20px;
}

.blog-content-text ul,
.blog-content-text ol {
    margin: 20px 0 20px 30px;
}

.blog-content-text li {
    margin-bottom: 10px;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary);
}

.tag-item {
    padding: 8px 16px;
    background: var(--light-gray-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--secondary);
}

/* Blog Share */
.blog-share {
    margin-top: 50px;
}

.blog-share h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    background: var(--light-gray-2);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--white);
}

.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: var(--white);
}

.share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
}

.share-copy:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-widget {
    background: var(--light-gray-2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Author Widget */
.author-widget {
    background: linear-gradient(135deg, var(--accent) 0%, #c29d2e 100%);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.categories-list a:hover {
    background: var(--accent);
}

.cat-count {
    background: var(--light-gray-2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--secondary);
}

.categories-list a:hover .cat-count {
    background: rgba(0, 0, 0, 0.1);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
    color: var(--white);
}

.cta-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-widget p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-widget-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.cta-widget-btn:hover {
    background: #c29d2e;
    transform: translateY(-2px);
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: var(--light-gray-2);
}

.section-title-center {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===== CONTACT PAGE - İLETİŞİM SAYFASI ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/assets/images/pages/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
}

.hero-content-contact {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

/* Contact Info Side */
.contact-info-side {
    position: sticky;
    top: 120px;
    align-self: start;
}

.info-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
}

.contact-info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.contact-info-box:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.6;
}

.info-content a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--accent);
}

/* Contact Social */
.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Contact Form Side */
.contact-form-side {
    background: var(--light-gray-2);
    border-radius: 20px;
    padding: 60px 50px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Form Messages */
.form-success-message,
.form-error-message {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #15803d;
}

.form-success-message svg {
    color: #22c55e;
    flex-shrink: 0;
}

.form-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #b91c1c;
}

.form-error-message svg {
    color: #ef4444;
    flex-shrink: 0;
}

.form-success-message p,
.form-error-message p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    /* Form styles */
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Google Maps Section */
.contact-map-section {
    background: var(--light-gray-2);
}

.map-container {
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}