/*
 * HIGH-END ARCHITECTURE STUDIO
 * Award-Winning Frontend Design
 * Minimalist • Sophisticated • Luxurious
 */

/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
:root {
    /* ========================================
       ULTRA PREMIUM COLOR PALETTE
       Architectural Digest & Swiss Style
       ======================================== */
    --bg-body: #F9F9F9;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF8F5;
    --text-dark: #111111;
    --text-body: #444444;
    --text-light: #5A5A5A;
    --text-muted: #888888;
    
    /* Warm Bronze - Modern & Earthy */
    --accent: #C5A085;
    --accent-dark: #A68B6E;
    --accent-light: #D4B89A;
    --accent-glow: rgba(197, 160, 133, 0.25);
    
    /* Deep Anthracite - Not Pure Black */
    --dark-panel: #1A1A1A;
    --dark-deep: #111111;
    --dark-surface: #242424;
    
    /* Borders & Overlays */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-accent: rgba(197, 160, 133, 0.35);
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(17, 17, 17, 0.9);

    /* Typography - Refined */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing - Luxurious Breathing Room */
    --section-padding: 140px;
    --section-padding-md: 100px;
    --section-padding-sm: 70px;
    --container-width: 1400px;
    --container-padding: 48px;

    /* Transitions - Smooth & Premium */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows - Soft & Elegant */
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px var(--accent-glow);
}

/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: var(--text-body);
    background-color: var(--bg-body);
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-text-size-adjust: 100%;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: 1000px;
}

.container--wide {
    max-width: 1600px;
}

main {
    min-height: 60vh;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-wrap: balance;
}

.heading-display {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.heading-sm {
    font-size: 1.25rem;
}

.text-body {
    font-size: 1rem;
    color: var(--text-light);
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
}

.text-accent {
    color: var(--accent);
}

/* ========================================
   BUTTONS - Magnetic Effect
   ======================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Primary Button */
.btn--primary {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.btn--primary::before {
    background: var(--dark-panel);
}

.btn--primary:hover {
    color: var(--bg-white);
    border-color: var(--dark-panel);
}

/* Outline Button */
.btn--outline {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn--outline:hover {
    color: var(--bg-white);
    border-color: var(--accent);
}

/* Ghost Button (Light) */
.btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn--ghost::before {
    background: var(--bg-white);
}

.btn--ghost:hover {
    color: var(--text-dark);
    border-color: var(--bg-white);
}

/* Button Sizes */
.btn--lg {
    padding: 1.25rem 3rem;
    font-size: 0.85rem;
}

.btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
}

/* ========================================
   HEADER - Transparent Sticky on Hero
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.25rem 0;
    background: transparent;
    transition: all var(--transition-smooth);
}

.site-header--scrolled {
    padding: 0.75rem 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-header__brand {
    flex-shrink: 0;
    z-index: 10;
}

.site-header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bg-white);
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.site-header__logo--image img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Desktop Navigation */
.site-header__nav--desktop {
    display: flex;
    align-items: center;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__menu li {
    list-style: none;
}

.site-header__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.site-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.site-header__link:hover {
    color: #ffffff;
}

.site-header__link:hover::after {
    width: 100%;
}

/* Header Extras */
.site-header__extras {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-social__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.header-social__link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.site-header--scrolled .header-social__link {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.site-header--scrolled .header-social__link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Accent Button - Always Visible */
.btn--accent {
    background: var(--accent);
    color: #ffffff;
    border: none;
}

.btn--accent:hover {
    background: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.site-header--scrolled .btn--accent {
    background: var(--accent);
    color: #ffffff;
}

.site-header--scrolled .btn--accent:hover {
    background: var(--accent-dark);
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.topbar__social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.site-header--scrolled .topbar__social-link {
    border-color: var(--border-light);
    color: var(--text-light);
}

.site-header--scrolled .topbar__social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile Toggle - Hidden on Desktop */
.site-header__toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.site-header__toggle:hover {
    border-color: var(--accent);
    background: rgba(197, 164, 126, 0.1);
}

.site-header--scrolled .site-header__toggle {
    border-color: var(--border-light);
}

.site-header--scrolled .site-header__toggle:hover {
    border-color: var(--accent);
}

.site-header__toggle-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--bg-white);
    transition: all var(--transition-fast);
    left: 50%;
    transform: translateX(-50%);
}

.site-header__toggle-line:nth-child(1) {
    top: calc(50% - 6px);
}

.site-header__toggle-line:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.site-header__toggle-line:nth-child(3) {
    bottom: calc(50% - 6px);
}

.site-header--scrolled .site-header__toggle-line {
    background: var(--text-dark);
}

.site-header__toggle.is-open .site-header__toggle-line:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.site-header__toggle.is-open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.site-header__toggle.is-open .site-header__toggle-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* Mobile Nav Overlay */
.site-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 9998;
}

body.mobile-nav-open .site-nav-overlay {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MOBILE NAVIGATION PANEL
   ======================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-smooth);
    overflow: hidden;
}

body.mobile-nav-open .mobile-nav {
    right: 0;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.mobile-nav__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-nav__close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-nav__content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-fast);
}

.mobile-nav__link:hover {
    color: var(--accent);
    padding-left: 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-nav__footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-nav__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.mobile-nav__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--full {
    width: 100%;
    text-align: center;
}

/* ========================================
   DROPDOWN MENU - Glassmorphism Effect
   ======================================== */
.site-header__menu > li {
    position: relative;
}

.site-header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-smooth);
    z-index: 1000;
    list-style: none;
    margin-top: 10px;
}

/* Üst ok işareti */
.site-header__submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
}

.site-header__menu > li:hover > .site-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header__submenu li {
    display: block;
    position: relative;
}

/* Ayırıcı çizgi */
.site-header__submenu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.site-header__submenu .site-header__link {
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    border-radius: 4px;
    margin: 0.25rem 0.5rem;
}

.site-header__submenu .site-header__link:hover {
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.15) 0%, rgba(197, 164, 126, 0.08) 100%);
    color: var(--accent-dark);
    padding-left: 1.75rem;
}

.site-header__submenu .site-header__link::after {
    display: none;
}

/* Scrolled Header - Dropdown Adjustment */
.site-header--scrolled .site-header__submenu {
    background: rgba(255, 255, 255, 0.99);
    border-color: var(--border-light);
}

.site-header--scrolled .site-header__submenu::before {
    background: rgba(255, 255, 255, 0.99);
}

/* ========================================
   HERO SECTION - Full Screen
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero--home {
    background: var(--dark-panel);
}

.hero--page {
    min-height: 60vh;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__image,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero__kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background: var(--dark-panel);
    color: var(--bg-white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--bg-white);
}

.section--dark .text-body {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION - Asymmetric Layout
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image__main {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image__accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    z-index: -1;
}

.about-content {
    padding-left: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.about-stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat__label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   PROJECTS GRID - Masonry Style
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.project-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.project-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card__image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.project-card:nth-child(1) .project-card__image-wrap {
    min-height: 730px;
}

.project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 60%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.project-card:hover .project-card__category {
    transform: translateY(0);
}

.project-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform var(--transition-smooth) 0.1s;
}

.project-card:hover .project-card__title {
    transform: translateY(0);
}

/* ========================================
   SERVICES STRIP
   ======================================== */
.services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.service-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background var(--transition-smooth);
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: var(--bg-white);
}

.service-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.service-item__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-item__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-item__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   PARALLAX CTA
   ======================================== */
.parallax-cta {
    position: relative;
    padding: 150px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.parallax-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.parallax-cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* ========================================
   FOOTER - 4 Column Dark
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, var(--dark-deep) 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 133, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column {
    min-width: 0;
}

.site-footer__brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.site-footer__tagline {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.site-footer__social {
    display: flex;
    gap: 1rem;
}

.site-footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.site-footer__social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.site-footer__title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.site-footer__link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__contact-item {
    font-size: 0.9375rem;
}

.site-footer__contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.site-footer__bottom {
    padding: 2rem 0;
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__credit {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__credit a {
    color: var(--accent);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   FORMS
   ======================================== */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input,
.form-textarea {
    padding: 1.125rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--accent);
    outline: none;
    background: linear-gradient(to bottom, transparent 95%, rgba(197, 160, 133, 0.1) 100%);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
}

.form-textarea:focus {
    background: var(--bg-white);
    border-color: var(--accent);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.contact-card__icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-card__title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-card__text {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.contact-card__link {
    color: var(--accent);
}

.contact-card__link:hover {
    text-decoration: underline;
}

/* Map */
.map-embed {
    width: 100%;
    height: 300px;
    border: 1px solid var(--border-light);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transform: scale(0.8);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-item__icon {
    transform: scale(1);
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 80px 0;
    background: var(--dark-panel);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-panel), transparent);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__kicker {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--bg-white);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ========================================
   AOS ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
        --container-padding: 30px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .project-card:nth-child(1) .project-card__image-wrap {
        min-height: 450px;
    }

    .services-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2) {
        border-right: none;
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-image__main {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Navigation */
    .site-header__toggle {
        display: flex;
    }

    .site-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-panel);
        padding: 100px 40px 40px;
        transition: right var(--transition-smooth);
        z-index: 1001;
    }

    body.site-nav-open .site-header__nav {
        right: 0;
    }

    .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .site-header__link {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .site-header__extras {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(1) {
        grid-column: span 1;
    }

    .project-card__image-wrap,
    .project-card:nth-child(1) .project-card__image-wrap {
        min-height: 300px;
    }

    .services-strip {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .parallax-cta {
        background-attachment: scroll;
    }
}

/* ========================================
   SELECTION & SCROLLBAR
   ======================================== */
::selection {
    background: var(--accent);
    color: var(--bg-white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ========================================
   PREMIUM ENHANCEMENTS
   ======================================== */

/* Logo Enhancement - Glow Effect */
.site-header__logo {
    font-size: 1.75rem;
    text-shadow: 0 0 20px rgba(197, 164, 126, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.site-header__logo--image img {
    max-height: 85px;
    width: auto;
    max-width: 220px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: all var(--transition-smooth);
}

.site-header__logo--image img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
    transform: scale(1.03);
}

.site-header--scrolled .site-header__logo--image img {
    max-height: 60px;
    filter: drop-shadow(0 0 8px rgba(197, 164, 126, 0.4));
}

@media (max-width: 768px) {
    .site-header__logo--image img {
        max-height: 60px;
        max-width: 80%;
    }
}

/* Dark Section Premium Background - Koyu Antrasit + Noise Texture */
.section--dark {
    background-color: #2a2a2a;
    background-image: 
        linear-gradient(135deg, rgba(197, 164, 126, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    position: relative;
}

.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(34, 34, 34, 0.95) 100%);
    pointer-events: none;
}

.section--dark > * {
    position: relative;
    z-index: 1;
}

/* Buttons on Dark Backgrounds - Always Visible */
.section--dark .btn--outline,
.parallax-cta .btn--outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.section--dark .btn--outline:hover,
.parallax-cta .btn--outline:hover {
    background: var(--accent);
    color: var(--dark-panel);
    border-color: var(--accent);
}

.section--dark .btn--primary,
.parallax-cta .btn--primary {
    background: var(--accent);
    color: var(--dark-panel);
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(197, 164, 126, 0.3);
}

.section--dark .btn--primary:hover,
.parallax-cta .btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 164, 126, 0.4);
}

/* Parallax CTA Premium Enhancement */
.parallax-cta {
    background-color: var(--dark-deep);
    background-image: 
        linear-gradient(135deg, rgba(197, 164, 126, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C5A47E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.parallax-cta__overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(34, 34, 34, 0.9) 100%);
}

/* ========================================
   SERVICE CARDS - Premium Design
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 133, 0.3);
    background: var(--bg-white);
}

.service-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.service-card__content {
    padding: 2rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.service-card:hover .service-card__title {
    color: var(--accent);
}

.service-card__excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.service-card__link:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ========================================
   RESPONSIVE - Mobile Navigation
   ======================================== */
@media (max-width: 992px) {
    /* Show Mobile Toggle Button */
    .site-header__toggle {
        display: flex !important;
    }
    
    /* Hide Desktop Navigation & Extras */
    .site-header__nav--desktop {
        display: none !important;
    }
    
    .site-header__extras {
        display: none !important;
    }
    
    /* Logo smaller on mobile */
    .site-header__logo--image img {
        height: 50px;
    }
}

/* Mobile Nav Submenu */
.mobile-nav__menu .has-submenu .site-header__submenu,
.mobile-nav__menu .mobile-nav__submenu {
    display: none;
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-nav__menu .has-submenu.is-open .site-header__submenu,
.mobile-nav__menu .has-submenu.is-open .mobile-nav__submenu {
    display: block;
}

.mobile-nav__menu .has-submenu > .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav__menu .has-submenu > .mobile-nav__link::after {
    content: '▼';
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}

.mobile-nav__menu .has-submenu.is-open > .mobile-nav__link::after {
    transform: rotate(180deg);
}

/* Smaller screens */
@media (max-width: 576px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .site-header__logo--image img {
        height: 40px;
    }
    
    .mobile-nav {
        max-width: 100%;
    }
}

/* LEGACY - Keep for backward compatibility */
@media (max-width: 992px) {
    .site-header__submenu .site-header__link {
        padding: 0.875rem 0 0.875rem 1.5rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7) !important;
        border-left: 2px solid var(--accent);
        margin-left: 0.5rem;
    }
    
    .site-header__submenu .site-header__link:hover {
        color: var(--accent) !important;
        background: transparent;
        padding-left: 2rem;
    }
}

/* ========================================
   PAGE CONTENT - Typography Fixes
   ======================================== */
.page-content {
    padding: var(--section-padding) 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-content ul li {
    list-style: disc;
}

.page-content ol li {
    list-style: decimal;
}

.page-content img {
    margin: 2rem 0;
    border-radius: 4px;
}

.page-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent);
    background: var(--bg-white);
    font-style: italic;
    color: var(--text-light);
}

/* Content Grid for Service/Page Details */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
    }
}

/* Sidebar Card */
.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-card__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.sidebar-card__link:last-child {
    border-bottom: none;
}

.sidebar-card__link:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.sidebar-card__link.is-active {
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   COMPACT SPACING UTILITIES
   ======================================== */
.section--compact {
    padding: 60px 0;
}

.section--no-top {
    padding-top: 0;
}

.section--no-bottom {
    padding-bottom: 0;
}

/* Fix for overlapping text */
.text-balance {
    text-wrap: balance;
}

.no-orphans {
    orphans: 3;
    widows: 3;
}

/* ========================================
   PROJECT CARD OVERLAY - Always Visible Title
   ======================================== */
.project-card__overlay {
    opacity: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0) 70%
    );
}

.project-card__category,
.project-card__title {
    transform: translateY(0);
}

.project-card:hover .project-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* ========================================
   KAT KARŞILIĞI PAGE STYLES
   ======================================== */
.section--kat {
    padding: 80px 0;
}

.section--kat__content {
    max-width: 900px;
}

.section--kat .section-header {
    margin-bottom: 2rem;
}

.section--kat .section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.section--kat .section-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section--kat .section-text:last-child {
    margin-bottom: 0;
}

/* Kat Benefits Section */
.section--kat-benefits {
    background: var(--bg-white);
    padding: 80px 0;
}

.section--kat-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .section--kat-benefits__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.kat-benefits .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.kat-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
}

.kat-benefits__list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    list-style: none;
}

.kat-benefits__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Accordion Styles */
.kat-accordion .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.accordion {
    border: 1px solid var(--border-light);
    margin-bottom: 0.5rem;
    background: var(--bg-body);
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.accordion__header:hover {
    background: var(--bg-white);
}

.accordion__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform var(--transition-fast);
}

.accordion__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion__icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion.is-open .accordion__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.accordion.is-open .accordion__content {
    max-height: 500px;
}

.accordion__content p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section for Kat Karşılığı */
.section--cta-kat-detail {
    background: var(--dark-panel);
    padding: 80px 0;
}

.cta--highlight,
.cta--vip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 3rem;
    background: #1a1a1a;
    background-image: linear-gradient(135deg, rgba(197, 164, 126, 0.15) 0%, rgba(197, 164, 126, 0.05) 100%);
    border: 1px solid rgba(197, 164, 126, 0.3);
}

@media (max-width: 768px) {
    .cta--highlight,
    .cta--vip {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 500px;
}

.cta__actions {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta__actions {
        justify-content: center;
    }
}

.cta__actions .btn--primary {
    background: var(--accent);
    color: #1a1a1a;
    border-color: var(--accent);
    white-space: nowrap;
}

.cta__actions .btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.cta__actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    white-space: nowrap;
}

.cta__actions .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ========================================
   HIZMETLERIMIZ PAGE - Service Grid
   ======================================== */
.section--services {
    padding: 80px 0;
}

.section--services .section-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Main Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card with Icon - Premium Card Design */
.section--services .service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.section--services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.section--services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.section--services .service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.3);
}

.service-card__icon-circle {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    opacity: 0.3;
}

.section--services .service-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.section--services .service-card:hover .service-card__title {
    color: var(--accent);
}

.section--services .service-card__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section--services .service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    transition: all var(--transition-fast);
}

.section--services .service-card__btn:hover {
    background: var(--accent);
    color: var(--bg-white);
}

/* Subservices Section */
.section--subservices {
    background: var(--bg-white);
    padding: 80px 0;
}

.section--subservices .section-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

.subservices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .subservices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .subservices-grid {
        grid-template-columns: 1fr;
    }
}

/* Subservice Card */
.subservice-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    padding: 2rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.subservice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height var(--transition-smooth);
}

.subservice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.subservice-card:hover::before {
    height: 100%;
}

.subservice-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 126, 0.1);
    border-radius: 8px;
}

.subservice-card__icon-inner {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
}

.subservice-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.subservice-card__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.subservice-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.subservice-card__link:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
}

.subservice-card__link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.subservice-card:hover .subservice-card__link::after {
    transform: translateX(4px);
}

/* ========================================
   PARALLAX SECTION MODULE
   ======================================== */
.parallax-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.parallax-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.parallax-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.parallax-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.parallax-section__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 300px;
    }
    
    .parallax-section__content {
        padding: 60px 0;
    }
}

/* ========================================
   CTA BAR MODULE
   ======================================== */
.cta-bar {
    padding: 60px 0;
    background: var(--dark-panel);
}

.cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-bar__content {
    flex: 1;
}

.cta-bar__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.cta-bar__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cta-bar__action {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-bar__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-bar__action {
        width: 100%;
    }
    
    .cta-bar__action .btn {
        width: 100%;
    }
}

/* ========================================
   GALLERY MODULE
   ======================================== */
.gallery-module {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.gallery-module__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-module__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .gallery-module__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-module__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LOGO BOYUTLANDIRMA DÜZELTMELERİ
   ======================================== */
.site-header__brand {
    max-width: none !important;
    width: auto !important;
    flex: 0 0 auto !important;
}

.site-header__logo--image {
    max-width: none !important;
    width: auto !important;
    display: block;
}

.site-header__logo--image img {
    max-height: 90px !important;
    width: auto !important;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-header__logo--image img {
        max-height: 60px !important;
    }
}

/* ========================================
   SECTION PADDING VE ARKAPLAN DÜZELTMELERİ
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.section--kat {
    padding: 100px 0 !important;
}

.section--kat-benefits {
    padding: 100px 0 !important;
    background: var(--bg-body);
}

.section--cta-kat-detail {
    padding: 100px 0;
    background: var(--dark-panel);
}

.projects-grid {
    padding-top: 20px;
}

.project-card__image-wrap {
    min-height: 300px;
}

@media (max-width: 992px) {
    .section--kat,
    .section--kat-benefits,
    .section--cta-kat-detail {
        padding: 80px 0 !important;
    }
}

@media (max-width: 768px) {
    .section--kat,
    .section--kat-benefits,
    .section--cta-kat-detail {
        padding: 60px 0 !important;
    }
}

/* ========================================
   SAYFA İÇERİK DÜZENİ (AKILLI ŞABLON)
   ======================================== */
.section--page-content {
    padding: 80px 0;
}

.page-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.page-content-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-light);
}

.page-content-text p {
    margin-bottom: 1.5rem;
}

.page-content-text p:last-child {
    margin-bottom: 0;
}

.page-content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.page-content-full {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-light);
}

.page-content-full p {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .page-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-content-image {
        order: -1;
    }
}

/* ========================================
   HİZMET KARTI GÖRSELLERİ
   ======================================== */
.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ========================================
   PROJE KARTI GÖRSELLERİ
   ======================================== */
.project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   GENEL GÖRSEL YARDIMCI SINIFLARI
   ======================================== */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px;
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   HAKKIMIZDA İKİNCİ GÖRSEL
   ======================================== */
.about-image__secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* ========================================
   PROJE KARTI LİNK STİLİ
   ======================================== */
.project-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card__link:hover .project-card__image {
    transform: scale(1.05);
}

/* ========================================
   HERO BACKGROUND IMAGE STİLİ
   ======================================== */
.hero--page[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero--page[style*="background-image"] .hero__media {
    display: none;
}

/* ========================================
   HİZMET DETAY SAYFASI STİLLERİ
   ======================================== */
.hero--service {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-content-text {
    order: 1;
}

.service-content-image {
    order: 2;
}

.service-content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-content-body {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
}

.service-content-body p {
    margin-bottom: 1.25rem;
}

.service-content-full {
    max-width: 900px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
}

.service-content-full p {
    margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-content-image {
        order: 1;
    }
    
    .service-content-text {
        order: 2;
    }
}

/* ========================================
   ULTRA PREMIUM ENHANCEMENTS
   The Magnum Opus - Architectural Digest Style
   ======================================== */

/* Scrolled Header - Light Glass Theme */
.site-header--scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.site-header--scrolled .site-header__link {
    color: var(--text-dark) !important;
}

.site-header--scrolled .site-header__link:hover {
    color: var(--accent) !important;
}

.site-header--scrolled .site-header__link::after {
    background: var(--accent);
}

/* Dark Sections - Premium Gradient Enhancement */
.section--dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%) !important;
    position: relative;
}

.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(197, 160, 133, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(197, 160, 133, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Sections - Luxurious Dark Gradient */
.cta--highlight,
.cta--vip {
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%) !important;
    border: 1px solid rgba(197, 160, 133, 0.2) !important;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cta--highlight::before,
.cta--vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 133, 0.5), transparent);
}

/* Parallax CTA - Deep Gradient */
.parallax-cta {
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
}

.parallax-cta__overlay {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
}

/* Premium Card Hover Effects */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
    z-index: 10;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Project Card Image Zoom */
.project-card__image {
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card__image {
    transform: scale(1.08);
}

/* Gallery Items - Premium Hover */
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-8px);
}

/* Contact Cards - Glassmorphism */
.contact-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 160, 133, 0.3);
}

/* Section Titles - Elegant Underline */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-header--center {
    align-items: center;
}

.section-header .section-kicker {
    margin-bottom: 0.75rem;
}

.section-header .section-title {
    position: relative;
    display: block;
    margin-bottom: 1.5rem;
}

.section-header--center .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Hero Enhancement */
.hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    ) !important;
}

.hero__title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__kicker {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Glow Effect */
.btn--primary {
    box-shadow: 0 4px 20px rgba(197, 160, 133, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 8px 30px rgba(197, 160, 133, 0.4);
    transform: translateY(-2px);
}

/* Smooth Scroll Indicator */
.hero__scroll-line {
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Premium Typography Spacing */
.section-text {
    letter-spacing: 0.01em;
    line-height: 2;
}

/* Accordion Premium Style */
.accordion {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    transition: all var(--transition-fast);
}

.accordion:hover {
    border-color: rgba(197, 160, 133, 0.3);
}

.accordion__header:hover {
    background: rgba(197, 160, 133, 0.05);
}

/* Sidebar Card Premium */
.sidebar-card {
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border: none;
}

/* Map Embed Premium */
.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: none;
}

/* Premium Responsive Adjustments */
@media (max-width: 1200px) {
    :root {
        --section-padding: var(--section-padding-md);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-sm);
        --container-padding: 24px;
    }
    
    .section-title::after {
        display: none;
    }
}

/* Selection Color */
::selection {
    background: var(--accent);
    color: var(--bg-white);
}

/* Focus States - Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(197, 160, 133, 0.4);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(197, 160, 133, 0.5);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   PAGE HERO - Unified Style
   ======================================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: -100px;
    padding-top: 100px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
}

/* ========================================
   KAT KARŞILIĞI PAGE STYLES
   ======================================== */
.kat-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kat-intro__content .section-kicker {
    margin-bottom: 1rem;
}

.kat-intro__content .section-title {
    margin-bottom: 1.5rem;
}

.kat-intro__content .text-body {
    margin-bottom: 1.25rem;
}

.kat-intro__content .btn {
    margin-top: 1rem;
}

.kat-intro__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-step__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.process-step__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.benefit-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 160, 133, 0.1) 0%, rgba(197, 160, 133, 0.05) 100%);
    border-radius: 50%;
    color: var(--accent);
}

.benefit-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-content .section-kicker {
    margin-bottom: 1rem;
}

.faq-content .section-title {
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Section Light */
.section--light {
    background: var(--bg-cream);
}

/* CTA VIP Style */
.cta--vip {
    background: linear-gradient(135deg, var(--dark-panel) 0%, var(--dark-deep) 100%);
    padding: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta--vip .cta__title {
    color: #ffffff;
    font-size: 1.75rem;
}

.cta--vip .cta__text {
    color: rgba(255, 255, 255, 0.7);
}

.cta--vip .cta__actions {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
}

/* Responsive - Kat Karşılığı */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .kat-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kat-intro__image {
        order: -1;
    }
    
    .kat-intro__image img {
        height: 350px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta--vip {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        min-height: 40vh;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Z-INDEX HIERARCHY
   ======================================== */
.hero-section,
.hero,
main {
    position: relative;
    z-index: 1;
}

.hero__overlay,
.hero__media {
    pointer-events: none;
}

.section-title {
    display: flex;
    flex-direction: column;
}

.section-title h2,
.section-title span {
    position: relative;
    z-index: 1;
}
