/**
 * BODRUM KAROT DELME - ULTRA LUXURY ARCHITECTURAL STYLESHEET
 * Premium Bauen & go.arch Architectural Light Aesthetic (Red Accent #DC2626)
 * Multi-Device Responsive & High-Performance Typography
 */

:root {
    --bg-main: #fafafa;
    --bg-secondary: #f2f4f7;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    
    --accent-bronze: #DC2626;
    --accent-bronze-light: #EF4444;
    --accent-bronze-dark: #B91C1C;
    --accent-gold: #F59E0B;
    
    --text-primary: #121417;
    --text-secondary: #4b5563;
    --text-muted: #8e95a2;
    
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-accent: rgba(220, 38, 38, 0.4);
    --grid-line-color: rgba(0, 0, 0, 0.035);
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1320px;
    --header-height: 85px;
}

/* Base Reset & Core Performance */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Background Vertical Architectural Grid Lines */
.architectural-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 max(20px, calc((100vw - var(--container-max)) / 2));
}

.architectural-grid .grid-line {
    width: 1px;
    height: 100%;
    background-color: var(--grid-line-color);
}

/* Left Vertical Bar (Bauen Luxury Rail) */
.left-fixed-rail {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid var(--border-subtle);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.02);
}

.left-fixed-rail .rail-socials {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.left-fixed-rail .rail-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.left-fixed-rail .rail-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 16px rgba(220, 39, 67, 0.35);
}

.left-fixed-rail .rail-social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0b5ec2 100%);
    box-shadow: 0 5px 16px rgba(24, 119, 242, 0.35);
}

.left-fixed-rail .rail-social-btn:hover {
    transform: scale(1.15) translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.left-fixed-rail .rail-footer-arrows {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-fixed-rail .rail-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.left-fixed-rail .rail-arrow:hover {
    color: var(--accent-bronze);
}

/* Main Layout Wrapper */
.main-wrapper {
    margin-left: 70px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Headings & Architectural Titles */
.section-title-wrap {
    margin-bottom: 45px;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-bronze);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--text-primary);
}

.section-title .white-part {
    color: var(--text-primary);
}

.section-title .bronze-part {
    color: var(--accent-bronze);
    margin-left: 6px;
}

/* Centered Section Action Buttons */
.section-action-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}

/* Header & Top Bar Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 90;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    height: 72px;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-logo-title span {
    color: var(--accent-bronze);
}

.brand-logo-sub {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-bronze);
    transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Header Direct Call Button */
.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
    padding: 9px 18px;
    text-transform: uppercase;
    border-radius: 0;
    background: transparent;
    transition: var(--transition);
}

.header-call-btn:hover {
    background: var(--accent-bronze);
    color: #ffffff;
    border-color: var(--accent-bronze);
}

/* Mobile Menu Button */
.mobile-toggle-btn {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
}

.mobile-toggle-btn span {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ==========================================================================
   MINIMAL COMPACT BREADCRUMB BAR (Under Header, Right Aligned)
   ========================================================================== */
.site-breadcrumb-bar {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 12px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.site-breadcrumb-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.compact-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.compact-breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.compact-breadcrumb a:hover {
    color: var(--accent-bronze);
}

.compact-breadcrumb .bc-arrow {
    color: var(--accent-bronze);
    font-size: 0.95rem;
    line-height: 1;
}

.compact-breadcrumb .bc-current {
    color: var(--accent-bronze);
    font-weight: 600;
}

.page-top-content {
    padding-top: 25px !important;
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-color: #eef1f5;
    overflow: hidden;
}

.hero-background-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(250, 250, 250, 0.92) 0%,
        rgba(250, 250, 250, 0.72) 50%,
        rgba(250, 250, 250, 0.94) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-card-box {
    max-width: 680px;
    text-align: left;
    padding: 50px 0;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-bronze);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1.16;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    line-height: 1.75;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

/* Premium Buttons Architecture (Sharp Architectural Corners) */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    min-height: 48px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: var(--transition);
    box-sizing: border-box;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-primary:hover {
    background-color: var(--accent-bronze);
    color: #ffffff;
    border-color: var(--accent-bronze);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.28);
}

.btn-secondary {
    background-color: var(--accent-bronze);
    color: #ffffff;
    border: 1px solid var(--accent-bronze);
    box-shadow: 0 2px 14px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonSubtleBreath 4.6s infinite ease-in-out;
}

/* Boydan Boya Yavaş ve Akıcı Akan Lüks Işık Süzülmesi (Shimmer Sweep) */
.btn-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: buttonShimmerSweep 4.6s infinite cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

/* Işık Süzmesinden Hemen Sonra Butonun Minimal Büyüyüp Küçülmesi (Hareketlenme) */
@keyframes buttonSubtleBreath {
    0%, 36% {
        transform: scale(1);
    }
    44% {
        transform: scale(1.045);
        box-shadow: 0 6px 24px rgba(220, 38, 38, 0.45);
    }
    52% {
        transform: scale(0.985);
        box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
    }
    60% {
        transform: scale(1.02);
    }
    68%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 12px rgba(220, 38, 38, 0.25);
    }
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

/* 2. ABOUT SECTION & STATS */
.about-section {
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

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

.about-text-col {
    padding-right: 15px;
}

.about-text-col p {
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.about-text-col p:last-of-type {
    margin-bottom: 30px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 20px 14px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-bronze);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.about-image-col {
    position: relative;
}

.about-image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.about-image-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: var(--transition);
}

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

.about-badge-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-accent);
    padding: 9px 18px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-bronze);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 90px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px 32px;
    border-radius: 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.vm-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vm-icon {
    width: 44px;
    height: 44px;
    color: var(--accent-bronze);
    margin-bottom: 20px;
}

.vm-icon svg {
    width: 100%;
    height: 100%;
}

.vm-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.vm-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 90px 0;
    border-bottom: 1px solid var(--border-subtle);
}

/* 3. PROJECTS SECTION (OUR PROJECTS 2-COLUMN FORMAT - HOMEPAGE) */
.projects-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.project-item-card {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.project-img-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.project-item-card:hover .project-img-box img {
    transform: scale(1.04);
    filter: brightness(0.98);
}

.project-meta-pill {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    padding: 11px 24px;
    text-align: center;
    white-space: nowrap;
    width: max-content;
    max-width: 90%;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-item-card:hover .project-meta-pill {
    border-color: var(--accent-bronze);
    background: #ffffff;
}

.project-meta-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.project-meta-sub {
    font-size: 0.75rem;
    color: var(--accent-bronze);
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* ==========================================================================
   GO.ARCH ARCHITECTURAL PORTFOLIO GALLERY (Projects Detail Page)
   ========================================================================== */
.portfolio-grid-section {
    padding: 40px 0 100px;
    border-bottom: 1px solid var(--border-subtle);
}

.portfolio-filter-bar {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

/* Keskin Kenarlı Filtre Butonları */
.portfolio-filter-bar .filter-btn {
    padding: 9px 22px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--text-secondary);
    border-radius: 0 !important;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.portfolio-filter-bar .filter-btn:hover,
.portfolio-filter-bar .filter-btn.active {
    background: var(--accent-bronze);
    color: #ffffff;
    border-color: var(--accent-bronze);
    font-weight: 700;
}

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

.goarch-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.goarch-img-holder {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.goarch-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.goarch-item:hover .goarch-img-holder img {
    transform: scale(1.06);
    filter: brightness(0.98);
}

.goarch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    z-index: 2;
    transition: var(--transition);
}

.goarch-side-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--accent-bronze-dark);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 0;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.goarch-cat {
    font-size: 0.75rem;
    color: var(--accent-bronze);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.goarch-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.3;
}

/* 4. SERVICES SECTION (HOMEPAGE & DETAIL) */
.services-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

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

.service-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-bronze);
    transition: var(--transition);
}

.service-box:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-box:hover::before {
    width: 100%;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent-bronze);
    display: flex;
    align-items: center;
}

.service-icon-wrap svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.3;
}

.service-box-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-box-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Services Detail Page Expanded Grid */
.services-detail-section {
    padding: 40px 0 100px;
    border-bottom: 1px solid var(--border-subtle);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.service-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 45px 35px;
    position: relative;
    border-radius: 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-detail-card:hover {
    border-color: var(--border-accent);
    background-color: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.sd-icon-wrap {
    width: 46px;
    height: 46px;
    color: var(--accent-bronze);
    flex-shrink: 0;
    margin-top: 4px;
}

.sd-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.sd-content {
    flex: 1;
}

.sd-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(220, 38, 38, 0.25);
}

.sd-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sd-desc {
    font-size: 0.94rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.sd-detail {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 18px;
}

.sd-spec-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid var(--border-accent);
    padding: 6px 12px;
    font-size: 0.78rem;
    color: var(--accent-bronze-dark);
    border-radius: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

/* 5. CONTACT SECTION & FORMS */
.contact-section {
    padding: 40px 0 100px;
    position: relative;
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 55px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    color: var(--accent-bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.contact-info-content h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-bronze);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-box {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e2e5e9;
    padding: 13px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-bronze);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-control option {
    background: #ffffff;
    color: var(--text-primary);
}

.form-status-alert {
    display: none;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--accent-bronze);
    color: var(--accent-bronze-dark);
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Map Embed Section */
.map-embed-section {
    padding: 0 0 90px;
    background-color: var(--bg-secondary);
}

.map-container-box {
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Call to Action Bar - Ultra Eye-Catching Urgent Red & Bronze */
.page-cta-section {
    padding: 75px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
}

.page-cta-box {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 50%, #fbf4f4 100%);
    border: 2px solid #DC2626;
    padding: 45px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
    position: relative;
    overflow: hidden;
}

.page-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #DC2626;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cta-text-side h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.cta-text-side p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-btn-side {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cta-call {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    border-color: #DC2626 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35) !important;
    font-weight: 700 !important;
}

.btn-cta-call:hover {
    background: #121417 !important;
    border-color: #121417 !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25) !important;
}

/* Footer Section */
.site-footer {
    background-color: #edf0f4;
    padding: 80px 0 35px;
    border-top: 1px solid #dfe3e8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--accent-bronze);
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-bottom-bar {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Floating Quick Actions (Left Instant Call & Right WhatsApp) */
.floating-action-left {
    position: fixed;
    bottom: 30px;
    left: 95px;
    z-index: 95;
}

.floating-action-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 95;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    position: relative;
    cursor: pointer;
}

/* Çift Katmanlı Dışa Yayılan Radar Nabız Halka Efekti */
.floating-btn::before,
.floating-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
}

.floating-btn.whatsapp svg {
    width: 32px;
    height: 32px;
    display: block;
}

.floating-btn.whatsapp::before {
    animation: floatingPulseGreen 2.4s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

.floating-btn.whatsapp::after {
    animation: floatingPulseGreen 2.4s infinite cubic-bezier(0.24, 0, 0.38, 1) 0.8s;
}

.floating-btn.call {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
}

.floating-btn.call svg {
    width: 25px;
    height: 25px;
    display: block;
}

.floating-btn.call::before {
    animation: floatingPulseRed 2.4s infinite cubic-bezier(0.24, 0, 0.38, 1) 0.4s;
}

.floating-btn.call::after {
    animation: floatingPulseRed 2.4s infinite cubic-bezier(0.24, 0, 0.38, 1) 1.2s;
}

/* İkonların Dikkat Çekici Periyodik Sallanması ('Beni Ara' Efekti) */
.floating-btn.whatsapp svg {
    animation: phoneWiggle 3.8s infinite ease-in-out;
}

.floating-btn.call svg {
    animation: phoneWiggle 3.8s infinite ease-in-out 1.9s;
}

@keyframes floatingPulseGreen {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
    }
    65% {
        transform: scale(1.42);
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1.48);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes floatingPulseRed {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.8);
    }
    65% {
        transform: scale(1.42);
        box-shadow: 0 0 0 16px rgba(220, 38, 38, 0);
    }
    100% {
        transform: scale(1.48);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

@keyframes phoneWiggle {
    0%, 70%, 100% {
        transform: rotate(0deg) scale(1);
    }
    74% {
        transform: rotate(-18deg) scale(1.18);
    }
    78% {
        transform: rotate(18deg) scale(1.18);
    }
    82% {
        transform: rotate(-12deg) scale(1.18);
    }
    86% {
        transform: rotate(12deg) scale(1.18);
    }
    90% {
        transform: rotate(-6deg) scale(1.1);
    }
    94% {
        transform: rotate(6deg) scale(1.05);
    }
}

.floating-btn:hover {
    transform: scale(1.14) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 1080px) {
    .left-fixed-rail {
        display: none;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .services-grid,
    .goarch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .page-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .floating-action-left {
        left: 24px;
    }
}

@media (max-width: 868px) {
    .container {
        padding: 0 24px;
    }
    
    .site-header {
        height: 72px;
    }
    
    .mobile-toggle-btn {
        display: flex;
        z-index: 105;
        position: relative;
    }
    
    .mobile-toggle-btn span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .mobile-toggle-btn.open span:nth-child(1),
    .mobile-toggle-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-toggle-btn.open span:nth-child(2),
    .mobile-toggle-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle-btn.open span:nth-child(3),
    .mobile-toggle-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 24px;
        gap: 28px;
        border-left: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        letter-spacing: 1px;
        color: var(--text-primary);
        display: inline-block;
        padding: 6px 16px;
    }
    
    .nav-links a.active,
    .nav-links a:hover {
        color: var(--accent-bronze);
    }
    
    .header-call-btn {
        display: none;
    }
    
    .about-grid,
    .projects-grid,
    .contact-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .hero-card-box {
        text-align: left;
        max-width: 100%;
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col p {
        text-align: center;
        max-width: 480px;
    }
    
    .footer-links-list {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .footer-links-list a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .about-image-card img {
        height: 320px;
    }
    
    .project-img-box {
        height: 280px;
    }
    
    .goarch-img-holder {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .goarch-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-detail-card {
        flex-direction: column;
        gap: 16px;
        padding: 30px 20px;
    }
    
    .hero-actions-group {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
    
    .hero-actions-group .btn-primary,
    .hero-actions-group .btn-secondary {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 11px 14px;
        min-height: 44px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        text-align: center;
    }
    
    .cta-btn-side {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-btn-side .btn-primary,
    .cta-btn-side .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-main-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }
    
    .hero-actions-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-actions-group .btn-primary,
    .hero-actions-group .btn-secondary {
        width: 100%;
        min-height: 46px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .contact-form-box {
        padding: 24px 16px;
    }
    
    .floating-action-left {
        bottom: 20px;
        left: 18px;
    }
    
    .floating-action-right {
        bottom: 20px;
        right: 18px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    
    .floating-btn.whatsapp svg {
        width: 28px;
        height: 28px;
    }
    
    .floating-btn.call svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   BLOG & KNOWLEDGE BASE (LUXURY ARCHITECTURAL STYLES)
   ========================================================================== */

/* ==========================================================================
   BLOG & KNOWLEDGE BASE (LUXURY ARCHITECTURAL STYLES)
   ========================================================================== */

/* Blog Modern Grid */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.blog-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-card-modern:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.blog-card-thumb-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #1a1a1a;
}

.blog-card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-modern:hover .blog-card-thumb-wrap img {
    transform: scale(1.06);
}

.blog-card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-bronze);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: inherit;
}

.blog-card-title a:hover {
    color: var(--accent-bronze);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.blog-card-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-bronze);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-read-link svg {
    transition: transform 0.25s ease;
}

.blog-read-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   BLOG DETAIL LAYOUT & SIDEBAR
   ========================================================================== */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.blog-main-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-featured-media {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.blog-featured-media img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-article-body {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
}

.blog-article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.blog-article-body h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-bronze);
    margin: 26px 0 12px 0;
    line-height: 1.35;
}

.blog-article-body p {
    margin-bottom: 20px;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 16px 0 24px 24px;
}

.blog-article-body li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.blog-article-body ol li {
    list-style-type: decimal;
}

.blog-article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.blog-article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blog-share-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.share-btn {
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #000000;
}

.blog-back-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-widget .widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-bronze);
    display: inline-block;
}

.sidebar-cta-widget {
    background: linear-gradient(145deg, #181b20, #0e1013);
    color: #ffffff;
    border-color: rgba(220, 38, 38, 0.3);
}

.sidebar-cta-widget .widget-tag {
    display: inline-block;
    color: var(--accent-bronze-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sidebar-cta-widget .widget-title {
    color: #ffffff;
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.sidebar-cta-widget p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sidebar-cta-widget .full-width-btn {
    display: block;
    text-align: center;
    width: 100%;
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.sidebar-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    flex-grow: 1;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.sidebar-post-title a {
    color: var(--text-primary);
}

.sidebar-post-title a:hover {
    color: var(--accent-bronze);
}

/* ==========================================================================
   HOME BLOG SHOWCASE
   ========================================================================== */
.home-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.home-blog-thumb {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.home-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-card:hover .home-blog-thumb img {
    transform: scale(1.05);
}

.home-blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-bronze);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.home-blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-blog-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.home-blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.home-blog-title a {
    color: inherit;
}

.home-blog-title a:hover {
    color: var(--accent-bronze);
}

.home-blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.home-blog-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-bronze);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Overrides for Blog */
@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 600px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .blog-main-content {
        padding: 20px 16px;
    }
    
    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   MINIMAL LUXURY FAQ ACCORDION (ÖRNEK TASARIM STANDARDI)
   ========================================================================== */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
}

.faq-acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: var(--transition);
}

.faq-acc-header:hover .faq-acc-title {
    color: var(--accent-bronze);
}

.faq-acc-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: var(--transition);
}

.faq-acc-icon {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
    color: var(--accent-bronze);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    display: inline-block;
}

.faq-acc-item.active .faq-acc-icon {
    transform: rotate(45deg);
    color: var(--accent-bronze-dark);
}

.faq-acc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

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

.faq-acc-body {
    padding: 0 8px 24px 8px;
}

.faq-acc-body p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* ==========================================================================
   SIDE SOCIAL DRAWER (AÇILIR KAPANIR INSTAGRAM & FACEBOOK ÇEKMECESİ - MARKA FORMATI)
   ========================================================================== */
.side-social-drawer {
    position: fixed;
    left: 0;
    top: 52px;
    transform: translateX(-100%);
    z-index: 99999;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.side-social-drawer.open {
    transform: translateX(0);
}

.side-drawer-toggle {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 38px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border: none;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 4px 14px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-drawer-toggle:hover {
    background: #121417;
    color: #DC2626;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
}

.side-drawer-toggle .toggle-arrow {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-social-drawer.open .side-drawer-toggle .toggle-arrow {
    transform: rotate(180deg);
}

.side-drawer-content {
    background: #121417;
    padding: 12px 14px;
    border-radius: 0 16px 16px 0;
    box-shadow: 6px 12px 35px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-left: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 175px;
}

.drawer-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.drawer-social-btn:hover {
    transform: translateX(3px);
}

.drawer-social-btn .drawer-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.drawer-social-btn .drawer-btn-label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Instagram Style */
.drawer-social-btn.instagram .drawer-icon-box {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.drawer-social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.4);
}

/* Facebook Style */
.drawer-social-btn.facebook .drawer-icon-box {
    background: #1877F2;
}

.drawer-social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.4);
}

/* Fiyat Alın (Hızlı Arama) Style */
.drawer-social-btn.call-quote {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.22) 0%, rgba(185, 28, 28, 0.28) 100%);
    border: 1px solid rgba(220, 38, 38, 0.55);
}

.drawer-social-btn.call-quote .drawer-icon-box {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.drawer-social-btn.call-quote .drawer-btn-label {
    color: #ffffff;
    font-weight: 800;
}

.drawer-social-btn.call-quote:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-color: #DC2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

/* Responsive Kuralları: Masaüstünde Dikey Sütun, Mobilde Çekmece */
@media (min-width: 1081px) {
    .side-social-drawer {
        display: none !important;
    }
    .left-fixed-rail {
        display: flex !important;
    }
}

@media (max-width: 1080px) {
    .left-fixed-rail {
        display: none !important;
    }
    .side-social-drawer {
        display: flex !important;
        top: 52px;
    }
}
