/* ==========================================================================
   ENMAX EMLAK - Premium Corporate Real Estate Design System 2026
   Inspired by RE/MAX, Sotheby's International Realty, Engel & Volkers
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-primary: #1a56db;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-primary-rgb: 26, 86, 219;
    --color-secondary: #0f172a;
    --color-secondary-rgb: 15, 23, 42;
    --color-accent: #dc2626;
    --color-accent-rgb: 220, 38, 38;

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-alt: #f8f9fb;
    --color-bg: #ffffff;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;

    /* Text */
    --color-text: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;

    /* Borders & UI */
    --color-border: #e5e7eb;
    --color-border-hover: #d1d5db;
    --color-success: #059669;
    --color-warning: #d97706;
    --color-error: #dc2626;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1da851;

    /* Typography */
    --font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
    --container-padding: 1.5rem;
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-text);
}


/* --------------------------------------------------------------------------
   2. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-alt {
    background-color: var(--color-surface-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-action {
    text-align: center;
    margin-top: var(--space-2xl);
}


/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--color-text);
    border-color: #fff;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff;
    border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-search {
    padding: 12px 28px;
    height: 48px;
    border-radius: var(--radius-md);
}


/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--duration-base) var(--ease-out),
                background-color var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Hero page: transparent header */
body.has-hero .site-header {
    background-color: transparent;
    border-bottom-color: transparent;
}
body.has-hero .site-header .nav-link {
    color: rgba(255,255,255,0.85);
}
body.has-hero .site-header .nav-link:hover,
body.has-hero .site-header .nav-link.active {
    color: #fff;
}
body.has-hero .site-header .hamburger-line {
    background: #fff;
}
body.has-hero .site-header.scrolled {
    background-color: #fff;
    border-bottom-color: var(--color-border);
}
body.has-hero .site-header.scrolled .nav-link {
    color: var(--color-text-secondary);
}
body.has-hero .site-header.scrolled .nav-link:hover,
body.has-hero .site-header.scrolled .nav-link.active {
    color: var(--color-primary);
}
body.has-hero .site-header.scrolled .hamburger-line {
    background: var(--color-text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: color var(--duration-fast), background-color var(--duration-fast);
    position: relative;
}

.nav-link svg {
    display: none;
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.05);
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

/* Mobile Nav Elements (hidden on desktop) */
.mobile-nav-header,
.mobile-nav-footer,
.mobile-nav-overlay {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--duration-fast);
    z-index: 1100;
    position: relative;
}
.hamburger:hover {
    background-color: var(--color-surface-alt);
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 1px;
    transition: all var(--duration-fast);
}
/* Hero sayfasında hamburger beyaz */
body.has-hero .site-header:not(.scrolled) .hamburger-line {
    background-color: #fff;
}
/* Mobil menu açıkken hamburger siyah (panel arkasından) */
body.mobile-nav-active .hamburger-line {
    background-color: var(--color-text) !important;
}


/* --------------------------------------------------------------------------
   5. Flash Messages
   -------------------------------------------------------------------------- */
.flash-container {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    right: 16px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 420px;
    width: calc(100% - 32px);
}

.flash-message {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    animation: fadeInUp 0.3s var(--ease-out);
    box-shadow: var(--shadow-lg);
}

.flash-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.flash-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.flash-warning {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}
.flash-info {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    transition: opacity var(--duration-fast);
}
.flash-close:hover {
    opacity: 1;
}


/* --------------------------------------------------------------------------
   6. Hero Section (Homepage)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    padding-top: var(--header-height);
    overflow: hidden;
}

/* Background image layer */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.9) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) 0;
    max-width: 780px;
    margin: 0 auto;
}
.hero-text {
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* Hero Search Form */
.hero-search-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 24px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.search-field select,
.search-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: #fff;
    color: var(--color-text);
    font-size: 14px;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239ca3af'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.search-field-btn {
    display: flex;
    align-items: flex-end;
}

.btn-search {
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    white-space: nowrap;
}


/* --------------------------------------------------------------------------
   7. Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar {
    background-color: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    border-right: 1px solid var(--color-border);
    transition: transform var(--duration-fast);
}
.stat-item:last-child {
    border-right: none;
}
.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* --------------------------------------------------------------------------
   8. Featured Section (Homepage Properties)
   -------------------------------------------------------------------------- */
.featured-section {
    background-color: #fff;
}


/* --------------------------------------------------------------------------
   9. Property Cards
   -------------------------------------------------------------------------- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.property-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.property-card-image {
    display: block;
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--color-surface-alt);
}
.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.property-card:hover .property-card-image img {
    transform: scale(1.06);
}

.property-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-surface-alt);
    color: var(--color-text-muted);
}

.property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
}
.property-badge-satilik {
    background-color: var(--color-primary);
    color: #fff;
}
.property-badge-kiralik {
    background-color: #d97706;
    color: #fff;
}
.property-badge-lg {
    font-size: 13px;
    padding: 6px 18px;
    position: static;
}
.property-badge-sold {
    background-color: #6b7280;
    color: #fff;
}
.property-badge-rented {
    background-color: #6b7280;
    color: #fff;
}

.property-card-body {
    padding: 20px;
}

.property-card-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.property-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-card-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--duration-fast);
}
.property-card-title a:hover {
    color: var(--color-primary);
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}
.property-card-location svg {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.property-card-features {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}
.property-card-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--color-text-secondary);
}
.property-card-features svg {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

/* Placeholder card (no data) */
.property-card-placeholder-item {
    opacity: 0.6;
}


/* --------------------------------------------------------------------------
   10. About Preview Section (Homepage)
   -------------------------------------------------------------------------- */
.about-preview {
    background-color: var(--color-surface-alt);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-preview-content .section-title {
    text-align: left;
}

.about-preview-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.75;
}

.about-preview-content .btn {
    margin-top: var(--space-md);
}

.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background-color: #eff6ff;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.55;
}


/* --------------------------------------------------------------------------
   11. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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


/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}
.footer-logo img {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--duration-fast);
}
.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}
.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--duration-fast);
}
.footer-contact a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: background-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast);
}
.social-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}
.social-whatsapp:hover {
    background-color: var(--color-whatsapp);
}
.social-instagram:hover {
    background-color: #e1306c;
}
.social-facebook:hover {
    background-color: #1877f2;
}
.social-youtube:hover {
    background-color: #ff0000;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}
.footer-bottom p {
    color: #ffffff;
    font-weight: 600;
}
.footer-powered {
    color: #ffffff !important;
    font-weight: 600 !important;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #ffffff;
    font-weight: 600;
    transition: color var(--duration-fast);
}
.footer-bottom-links a:hover {
    color: var(--color-primary);
}


/* --------------------------------------------------------------------------
   13. Floating Elements
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background-color: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
    animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    z-index: 899;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--duration-base) var(--ease-out);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}


/* --------------------------------------------------------------------------
   14. Page Header (Inner pages)
   -------------------------------------------------------------------------- */
.page-header {
    background-color: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}
.breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast);
}
.breadcrumb a:hover {
    color: var(--color-primary);
}
.breadcrumb span {
    color: var(--color-text-muted);
}
.breadcrumb-sep {
    color: var(--color-text-muted);
    opacity: 0.5;
}


/* --------------------------------------------------------------------------
   15. Listings Page
   -------------------------------------------------------------------------- */
.listings-section {
    background-color: #fff;
}

.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Sidebar Filters */
.listings-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.filter-form {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.filter-group {
    margin-bottom: var(--space-lg);
}
.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: #fff;
    color: var(--color-text);
    font-size: 14px;
    outline: none;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    appearance: none;
    -webkit-appearance: none;
}
.filter-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239ca3af'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}

.filter-range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-range input {
    flex: 1;
    min-width: 0;
}
.filter-range-sep {
    color: var(--color-text-muted);
    font-weight: 500;
}

.filter-form .btn {
    margin-top: 4px;
}
.filter-form .btn + .btn {
    margin-top: 8px;
}

/* Listings Content Area */
.listings-content {
    min-width: 0;
}

.listings-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.listings-count {
    font-size: 15px;
    color: var(--color-text-secondary);
}
.listings-count strong {
    color: var(--color-text);
    font-weight: 700;
}

/* Listings grid (slightly different from homepage grid) */
.property-grid-list {
    grid-template-columns: repeat(2, 1fr);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--duration-fast);
}
.pagination-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.05);
}
.pagination-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.pagination-active:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--color-surface-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}
.empty-state svg {
    margin-bottom: var(--space-lg);
}
.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


/* --------------------------------------------------------------------------
   16. Single Property Page
   -------------------------------------------------------------------------- */
.property-hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-md);
    background-color: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
}

/* Gallery */
.property-gallery {
    margin-top: var(--space-lg);
}

.property-gallery-main {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--color-surface-alt);
    margin-bottom: 12px;
    position: relative;
}
.property-gallery-main .gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.property-gallery-main .gallery-slide.active {
    opacity: 1;
    position: relative;
}

/* Gallery nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #111827;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    opacity: 0;
}
.property-gallery:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

/* Gallery counter */
.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 5;
}

.property-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    color: var(--color-text-muted);
}

.property-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.65;
    transition: all var(--duration-fast);
    background: none;
    padding: 0;
}
.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Detail Layout */
.property-detail-section {
    background-color: #fff;
}

.property-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Main Content */
.property-detail-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.property-detail-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.property-detail-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 200px;
}

.property-detail-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.property-detail-price {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

/* Info Sections */
.property-info-section {
    margin-bottom: var(--space-2xl);
}

.property-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.detail-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.detail-item:nth-child(3n) {
    border-right: none;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

/* Features List */
.property-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}
.property-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 8px 12px;
    background-color: var(--color-surface-alt);
    border-radius: var(--radius-md);
}
.property-features-list li svg {
    flex-shrink: 0;
}

/* Description */
.property-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Address & Map */
.property-address-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.property-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.property-map iframe {
    display: block;
}

/* Share */
.property-share {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Related */
.property-grid-related {
    grid-template-columns: repeat(3, 1fr);
}

/* Sidebar */
.property-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

/* Agent Card */
.agent-info {
    margin-bottom: var(--space-lg);
}
.agent-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}
.agent-role {
    font-size: 13px;
    color: var(--color-text-muted);
}
.agent-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sidebar Info List */
.sidebar-info-list {
    list-style: none;
}
.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}
.sidebar-info-list li:last-child {
    border-bottom: none;
}
.sidebar-info-list li span {
    color: var(--color-text-muted);
}
.sidebar-info-list li strong {
    color: var(--color-text);
    font-weight: 600;
}


/* --------------------------------------------------------------------------
   17. Contact Page
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-section .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}
.contact-form-section > p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact-info-section .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

/* Contact Form */
.contact-form,
.contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    min-height: 48px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: #fff;
    color: var(--color-text);
    font-size: 15px;
    outline: none;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: var(--space-md);
}
.form-note a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 14px;
    line-height: 1.6;
}
.alert ul {
    padding-left: 18px;
    list-style: disc;
}
.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--space-xl);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: border-color var(--duration-fast);
}
.contact-card:hover {
    border-color: var(--color-primary);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: #eff6ff;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}
.contact-card-content a,
.contact-card-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.contact-card-content a:hover {
    color: var(--color-primary);
}

.contact-whatsapp-btn {
    margin-bottom: var(--space-xl);
}

.contact-map {
    margin-top: var(--space-md);
}
.contact-map h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.contact-map iframe {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: block;
}


/* --------------------------------------------------------------------------
   18. About Page
   -------------------------------------------------------------------------- */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-story-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-story-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 15px;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.mv-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}
.mv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: #eff6ff;
    color: var(--color-primary);
    margin: 0 auto var(--space-lg);
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.mv-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.why-us-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: background-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast);
}
.why-us-card:hover {
    background-color: var(--color-surface-alt);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: #eff6ff;
    color: var(--color-primary);
    margin: 0 auto var(--space-md);
}

.why-us-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.why-us-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    background-color: var(--color-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border: 2px solid var(--color-border);
}

.team-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}
.team-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Corporate Text */
.about-corporate {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-corporate .section-title {
    margin-bottom: var(--space-lg);
}
.about-corporate p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 15px;
}
.about-corporate a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-xl);
}


/* --------------------------------------------------------------------------
   19. Legal Pages (KVKK, Gizlilik)
   -------------------------------------------------------------------------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.legal-update {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-left: 14px;
    border-left: 3px solid var(--color-primary);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: var(--space-lg);
}
.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}
.legal-content strong {
    color: var(--color-text);
}


/* --------------------------------------------------------------------------
   20. 404 Error Page
   -------------------------------------------------------------------------- */
.error-section {
    padding: var(--space-5xl) 0;
}

.error-content {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    color: var(--color-surface-alt);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: var(--space-md);
    background: linear-gradient(180deg, var(--color-border) 0%, var(--color-surface-alt) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.error-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.error-search {
    margin-bottom: var(--space-xl);
}
.error-search-inner {
    display: flex;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.error-search-inner:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}
.error-search-inner input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    outline: none;
    color: var(--color-text);
    background: #fff;
}
.error-search-inner input::placeholder {
    color: var(--color-text-muted);
}
.error-search-inner .btn {
    border-radius: 0;
    border: none;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   21. Blog Page & Blog Card Styles
   -------------------------------------------------------------------------- */
.blog-page-header {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    background-color: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
}

.blog-page {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background-color: #fff;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}

.blog-main {
    min-width: 0;
}

/* Blog Search Info */
.blog-search-info {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Blog Card */
.blog-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    transition: box-shadow var(--duration-base), transform var(--duration-base);
}
.blog-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.blog-card-featured {
    grid-template-columns: 1fr;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 220px;
}
.blog-card-featured .blog-card-image {
    height: 320px;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface-alt);
    color: var(--color-text-muted);
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-card-author,
.blog-card-date,
.blog-card-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-text-muted);
}
.blog-card-author svg,
.blog-card-date svg,
.blog-card-views svg {
    flex-shrink: 0;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--duration-fast);
}
.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.blog-card-readmore {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration-fast);
}
.blog-card-readmore:hover {
    color: var(--color-primary-dark);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-2xl);
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--duration-fast);
    background: #fff;
}
.pagination-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.05);
}
.pagination-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}
.blog-empty-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}
.blog-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.blog-empty p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}


/* --------------------------------------------------------------------------
   22. Blog Sidebar
   -------------------------------------------------------------------------- */
.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-about .sidebar-about-inner {
    text-align: center;
}
.sidebar-logo {
    max-width: 140px;
    margin-bottom: var(--space-sm);
}
.sidebar-about p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.sidebar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(var(--color-primary-rgb), 0.08);
    color: var(--color-primary);
    transition: all var(--duration-fast);
}
.sidebar-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.sidebar-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}
.sidebar-search input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 14px;
    outline: none;
}
.sidebar-search input::placeholder {
    color: var(--color-text-muted);
}
.sidebar-search button {
    padding: 10px 14px;
    background: var(--color-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background var(--duration-fast);
}
.sidebar-search button:hover {
    background: var(--color-primary-dark);
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-categories li {
    margin-bottom: 2px;
}
.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--duration-fast);
}
.sidebar-categories a:hover,
.sidebar-categories a.active {
    background: rgba(var(--color-primary-rgb), 0.06);
    color: var(--color-primary);
}
.cat-name {
    flex: 1;
}
.cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

/* Sidebar Popular Posts */
.sidebar-popular {
    display: flex;
    flex-direction: column;
}
.popular-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: all var(--duration-fast);
}
.popular-post:last-child {
    border-bottom: none;
}
.popular-post:hover {
    transform: translateX(3px);
}
.popular-post-img {
    width: 72px;
    height: 56px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.popular-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popular-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-primary-rgb), 0.06);
    font-size: 22px;
}
.popular-post-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--duration-fast);
}
.popular-post:hover .popular-post-info h4 {
    color: var(--color-primary);
}
.popular-post-date {
    font-size: 11px;
    color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   23. Single Blog Post
   -------------------------------------------------------------------------- */
.blog-post-header {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-lg);
    background: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
}

.blog-single {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.blog-post {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.blog-post-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.blog-post-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.blog-post-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.blog-post-author-info strong {
    display: block;
    color: var(--color-text);
    font-size: 14px;
}
.blog-post-author-info > div > span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.blog-post-stats {
    display: flex;
    gap: var(--space-md);
    color: var(--color-text-muted);
    font-size: 13px;
}
.blog-post-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Blog Post Image */
.blog-post-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    max-height: 420px;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TOC */
.toc {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.toc-header {
    font-size: 15px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-weight: 700;
}
.toc-list {
    padding-left: var(--space-lg);
    margin: 0;
}
.toc-list li {
    margin-bottom: 8px;
}
.toc-list a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--duration-fast);
}
.toc-list a:hover {
    color: var(--color-primary-dark);
    padding-left: 4px;
}
.toc-sub {
    margin-left: var(--space-md);
    font-size: 13px;
}

/* Blog Post Content */
.blog-post-content {
    color: var(--color-text);
    line-height: 1.85;
    font-size: 16px;
}
.blog-post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}
.blog-post-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: var(--space-xl) 0 var(--space-sm);
}
.blog-post-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}
.blog-post-content ul,
.blog-post-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
    color: var(--color-text-secondary);
    list-style: disc;
}
.blog-post-content ol {
    list-style: decimal;
}
.blog-post-content li {
    margin-bottom: 6px;
    line-height: 1.7;
}
.blog-post-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-post-content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}
.blog-post-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--color-surface-alt);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--color-text-secondary);
}
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}
.blog-post-content table th,
.blog-post-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}
.blog-post-content table th {
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-surface-alt);
}

/* Share */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-lg) 0;
    margin-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}
.share-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    margin-right: 4px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--duration-fast);
    text-decoration: none;
    font-size: 14px;
}
.share-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.share-twitter:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.share-copy:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Author Bio Card */
.blog-author-card {
    display: flex;
    gap: var(--space-lg);
    padding: 24px;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    margin-top: var(--space-xl);
}
.blog-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
}
.blog-author-info h4 {
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 4px;
}
.blog-author-info p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Related Posts */
.blog-related {
    margin-bottom: var(--space-2xl);
}
.blog-related-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.related-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}
.related-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.related-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}
.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}
.related-card:hover .related-card-img img {
    transform: scale(1.06);
}
.related-card h4 {
    padding: 14px 16px 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card-date {
    padding: 0 16px 14px;
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   24. Animations & Keyframes
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

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


/* --------------------------------------------------------------------------
   25. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero {
        animation: none;
    }
    .whatsapp-float {
        animation: none;
    }
}


/* --------------------------------------------------------------------------
   26. Responsive: 1024px (Tablets & small laptops)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.25rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    /* Property Grid */
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-grid-related {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Listings */
    .listings-layout {
        grid-template-columns: 260px 1fr;
        gap: var(--space-xl);
    }

    /* Single Property */
    .property-detail-layout {
        grid-template-columns: 1fr 300px;
    }
    .property-gallery-main {
        height: 380px;
    }
    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-item:nth-child(3n) {
        border-right: 1px solid var(--color-border);
    }
    .detail-item:nth-child(2n) {
        border-right: none;
    }

    /* About */
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    /* Blog */
    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: var(--space-xl);
    }
    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    /* Search Form */
    .search-fields {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-field-btn {
        grid-column: 1 / -1;
    }
    .search-field-btn .btn {
        width: 100%;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* --------------------------------------------------------------------------
   27. Responsive: 768px (Mobile)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --container-padding: 1rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.3s var(--ease-out);
        overflow-y: auto;
    }

    body.mobile-nav-active .header-nav {
        right: 0;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease-out);
    }
    body.mobile-nav-active .mobile-nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--color-border);
    }
    .mobile-nav-header img {
        height: 32px;
        width: auto;
    }

    .mobile-nav-close {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-surface-alt);
        border: 1px solid var(--color-border);
        color: var(--color-text);
        cursor: pointer;
        transition: all var(--duration-fast);
    }
    .mobile-nav-close:hover {
        background: var(--color-border);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 2px;
        list-style: none;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 500;
        color: var(--color-text) !important;
        text-decoration: none;
        border-radius: var(--radius-md);
        transition: all 0.2s;
        width: 100%;
    }
    .nav-link:hover,
    .nav-link.active {
        background: rgba(26,86,219,0.08);
        color: var(--color-primary) !important;
    }
    .nav-link:hover svg,
    .nav-link.active svg {
        color: var(--color-primary) !important;
    }
    .nav-link svg {
        display: block;
        width: 20px;
        height: 20px;
        color: var(--color-text-muted);
        flex-shrink: 0;
    }
    .nav-link::after,
    .nav-link.active::after {
        display: none !important;
    }

    /* Override has-hero white color on mobile (white panel bg) */
    body .site-header .header-nav .nav-link,
    body.has-hero .site-header .header-nav .nav-link,
    body.has-hero .site-header.scrolled .header-nav .nav-link {
        color: var(--color-text) !important;
    }
    body .site-header .header-nav .nav-link:hover,
    body.has-hero .site-header .header-nav .nav-link:hover,
    body .site-header .header-nav .nav-link.active,
    body.has-hero .site-header .header-nav .nav-link.active {
        color: var(--color-primary) !important;
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
        margin-top: auto;
        border-top: 1px solid var(--color-border);
    }

    .mobile-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all var(--duration-fast);
        background: var(--color-surface-alt);
        color: var(--color-text);
        border: 1px solid var(--color-border);
    }
    .mobile-nav-btn:hover {
        background: var(--color-border);
    }

    .mobile-nav-whatsapp {
        background: var(--color-whatsapp);
        color: #fff;
        border-color: var(--color-whatsapp);
    }
    .mobile-nav-whatsapp:hover {
        background: var(--color-whatsapp-dark);
        border-color: var(--color-whatsapp-dark);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 32px;
    }
    .hero-bg-image {
        background-position: center 30%;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.85) 100%);
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: var(--space-lg) 0;
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    .hero-title br { display: none; }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: var(--space-md);
    }

    /* Mobil: Filtre kompakt */
    .hero-search-form {
        padding: 14px;
        border-radius: 12px;
    }
    .search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .search-field label { font-size: 10px; margin-bottom: 3px; }
    .search-field select,
    .search-field input { padding: 10px 12px; font-size: 13px; }
    .search-field-btn {
        grid-column: 1 / -1;
    }
    .search-field-btn .btn { padding: 12px; font-size: 14px; }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding: var(--space-md);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }

    /* Property Grid - Horizontal Scroll on Mobile */
    .featured-section .property-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin: 0 calc(var(--container-padding) * -1);
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        scrollbar-width: none;
    }
    .featured-section .property-grid::-webkit-scrollbar { display: none; }
    .featured-section .property-grid .property-card {
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: start;
    }
    .featured-section .property-grid .property-card:last-child {
        margin-right: var(--container-padding);
    }

    /* Regular listing grid stays vertical */
    .listings-page .property-grid,
    .property-grid-list {
        display: grid;
        grid-template-columns: 1fr;
    }
    .property-grid-related {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        scrollbar-width: none;
    }
    .property-grid-related::-webkit-scrollbar { display: none; }
    .property-grid-related .property-card {
        flex: 0 0 80%;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* Listings */
    .listings-layout {
        grid-template-columns: 1fr;
    }
    .listings-sidebar {
        position: static;
        order: -1;
    }

    /* Single Property */
    .property-detail-layout {
        grid-template-columns: 1fr;
    }
    .property-detail-sidebar {
        position: static;
    }
    .property-card-image {
        height: 220px;
    }

    /* Gallery swipe on mobile */
    .property-gallery-main {
        height: 280px;
        border-radius: var(--radius-lg);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        scrollbar-width: none;
    }
    .property-gallery-main::-webkit-scrollbar { display: none; }
    .property-gallery-main .gallery-slide {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        scroll-snap-align: start;
        opacity: 1;
    }
    .gallery-nav { display: none !important; }
    .gallery-counter {
        position: fixed;
        bottom: auto;
        top: calc(var(--header-height) + 8px);
        right: var(--container-padding);
    }
    .property-gallery-thumbs {
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding: 8px 0;
        scrollbar-width: none;
    }
    .property-gallery-thumbs::-webkit-scrollbar { display: none; }
    .gallery-thumb {
        width: 64px;
        height: 48px;
    }
    .property-details-grid {
        grid-template-columns: 1fr 1fr;
    }
    .property-features-list {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
    .about-preview-features {
        grid-template-columns: 1fr 1fr;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
    .blog-card {
        grid-template-columns: 1fr;
    }
    .blog-card-image {
        height: 200px;
    }
    .blog-card-featured .blog-card-image {
        height: 240px;
    }
    .blog-post {
        padding: var(--space-lg);
    }
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
    .blog-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .blog-post-meta {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Floating */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .back-to-top {
        right: 80px;
        bottom: 16px;
    }

    /* About CTA */
    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Error */
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* --------------------------------------------------------------------------
   28. Responsive: 480px (Small mobile)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .hero-content {
        padding: var(--space-xl) 0;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 11px;
    }

    .property-card-image {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .blog-card-content {
        padding: 16px;
    }
    .blog-post-title {
        font-size: 1.25rem;
    }
    .blog-pagination {
        gap: 4px;
    }
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    .about-preview-features {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .property-details-grid {
        grid-template-columns: 1fr;
    }
    .detail-item {
        border-right: none !important;
    }

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

    .error-code {
        font-size: 5rem;
    }
}


/* --------------------------------------------------------------------------
   29. Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .flash-container,
    .hero-search-form,
    .cta-section,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: #f5f5f5;
    }

    .property-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ============================================================
   CTA + SEO COMBINED SECTION
   ============================================================ */
.cta-seo-section {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 50%, #1a3a8a 100%);
    padding: var(--space-4xl) 0;
    color: #fff;
}
.cta-top {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cta-top h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-md);
}
.cta-top p {
    color: rgba(255,255,255,0.8);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.btn-whatsapp-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-whatsapp-light:hover { background: #1fb855; transform: translateY(-2px); }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* SEO Scroll Area */
.seo-scroll-area {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.85);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.seo-scroll-area::-webkit-scrollbar { width: 6px; }
.seo-scroll-area::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
.seo-scroll-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 3px; }
.seo-scroll-area::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }
.seo-scroll-area h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 3px solid rgba(255,255,255,0.4);
}
.seo-scroll-area h2:first-child { margin-top: 0; }
.seo-scroll-area h3 {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin: 22px 0 10px;
}
.seo-scroll-area p {
    margin-bottom: 14px;
    font-size: 14px;
}
.seo-scroll-area strong { color: #fff; font-weight: 600; }
.seo-scroll-area ul, .seo-scroll-area ol { margin: 10px 0 14px; padding-left: 22px; }
.seo-scroll-area li { margin-bottom: 5px; font-size: 14px; }

@media (max-width: 768px) {
    .cta-seo-section { padding: var(--space-2xl) 0; }
    .cta-top h2 { font-size: 1.3rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons a { justify-content: center; }
    .seo-scroll-area { max-height: 300px; padding-right: 8px; }
    .seo-scroll-area h2 { font-size: 17px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--color-surface-alt);
    padding: var(--space-4xl) 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: var(--space-xl);
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover {
    border-color: rgba(26,86,219,0.2);
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    padding-right: 48px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    line-height: 1.5;
    transition: color 0.2s;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    content: '−';
}
.faq-item.open .faq-question {
    color: var(--color-primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    background: #fff;
    padding: var(--space-4xl) 0;
}
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-md);
}
.reviews-stars {
    color: #f59e0b;
    font-size: 24px;
    letter-spacing: 2px;
}
.reviews-avg {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
}
.reviews-count {
    font-size: 14px;
    color: var(--color-text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: var(--space-xl);
}
.review-card {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}
.review-card:hover {
    border-color: rgba(26,86,219,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.review-hidden {
    display: none;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-meta strong {
    display: block;
    font-size: 14px;
    color: var(--color-text);
}
.review-date {
    font-size: 12px;
    color: var(--color-text-muted);
}
.review-rating {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.reviews-more-wrap {
    text-align: center;
    margin-top: var(--space-xl);
}
.reviews-more-btn {
    padding: 12px 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .seo-content h2 { font-size: 18px; }
    .seo-content h3 { font-size: 16px; }
    .seo-content { max-height: 300px; }
}
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   ABOUT PAGE - PREMIUM CORPORATE
   ============================================================ */

/* About Hero */
.about-hero-section {
    padding: var(--space-4xl) 0;
    background: #fff;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(26,86,219,0.08);
    border-radius: 6px;
}
.about-hero-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.about-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}
.about-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.about-stat span {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Visual Cards Grid */
.about-hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-visual-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.about-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.about-visual-card-1 { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.about-visual-card-2 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.about-visual-card-3 { background: linear-gradient(135deg, #fef3c7, #fde68a33); }
.about-visual-card-4 { background: linear-gradient(135deg, #fce7f3, #fbcfe833); }
.about-visual-icon { font-size: 36px; margin-bottom: 14px; }
.about-visual-card h4 { font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.about-visual-card p { font-size: 13px; color: var(--color-text-secondary); }

/* Mission & Vision */
.about-mv-section {
    background: var(--color-surface-alt);
}
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-mv-card {
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.about-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.about-mv-mission::before { background: linear-gradient(90deg, #1a56db, #6366f1); }
.about-mv-vision::before { background: linear-gradient(90deg, #059669, #10b981); }
.about-mv-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.about-mv-mission .about-mv-badge { background: rgba(26,86,219,0.08); color: var(--color-primary); }
.about-mv-vision .about-mv-badge { background: rgba(5,150,105,0.08); color: #059669; }
.about-mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.3;
}
.about-mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}
.about-mv-card ul {
    list-style: none;
    padding: 0;
}
.about-mv-card li {
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-mv-card li::before {
    content: '✓';
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.about-mv-mission li::before { background: rgba(26,86,219,0.1); color: var(--color-primary); }
.about-mv-vision li::before { background: rgba(5,150,105,0.1); color: #059669; }

/* Values */
.about-values-section { background: #fff; }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: var(--space-xl);
}
.about-value-card {
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}
.about-value-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(26,86,219,0.08);
    transform: translateY(-4px);
}
.about-value-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(26,86,219,0.08);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.about-value-card:hover .about-value-num { color: rgba(26,86,219,0.15); }
.about-value-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Founder - Premium Showcase */
.founder-section {
    background: linear-gradient(180deg, var(--color-surface-alt) 0%, #fff 100%);
}
.founder-showcase {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Founder Visual */
.founder-visual {
    text-align: center;
}
.founder-avatar-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 28px;
}
.founder-avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: rgba(26,86,219,0.3);
    animation: founderSpin 8s linear infinite;
}
@keyframes founderSpin {
    to { transform: rotate(360deg); }
}
.founder-avatar-main {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    box-shadow: 0 20px 60px rgba(26,86,219,0.25);
}
.founder-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.founder-badge {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.founder-badge strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.founder-badge span {
    font-size: 10px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Founder Content */
.founder-content .founder-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.founder-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.founder-quote {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-secondary);
    padding: 20px 24px;
    border-left: 4px solid var(--color-primary);
    background: rgba(26,86,219,0.03);
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
}
.founder-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}
.founder-expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0;
}
.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
.expertise-item svg { color: #059669; flex-shrink: 0; }

.founder-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.founder-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.founder-cta-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}
.founder-cta-wa:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.founder-cta-phone {
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.founder-cta-phone:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }

/* Eski founder stilleri override */
.about-team-section { background: var(--color-surface-alt); }
.about-founder {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.about-founder-avatar {
    flex-shrink: 0;
}
.founder-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
}
.about-founder-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}
.founder-title {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
.about-founder-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}
.founder-contact {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.founder-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s;
}
.founder-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.founder-btn-wa { background: #25D366; color: #fff !important; border-color: #25D366; }
.founder-btn-wa:hover { background: #1fb855; }

/* Process */
.about-process-section { background: #fff; }
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: var(--space-xl);
    position: relative;
}
.about-process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.process-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.process-step-line {
    position: absolute;
    top: 26px;
    left: 55%;
    right: -45%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}
.about-process-step:last-child .process-step-line { display: none; }
.about-process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.about-process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-hero-visual { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-mv-card { padding: 28px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-founder { flex-direction: column; text-align: center; padding: 28px; gap: 20px; }
    .founder-contact { justify-content: center; }
    .founder-showcase { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .founder-content { text-align: left; }
    .founder-avatar-wrap { width: 160px; height: 160px; }
    .founder-avatar-main { font-size: 44px; }
    .founder-badges { flex-wrap: wrap; justify-content: center; }
    .founder-content h2 { font-size: 26px; text-align: center; }
    .founder-content .founder-label { display: block; text-align: center; }
    .founder-expertise { grid-template-columns: 1fr; }
    .founder-actions { flex-direction: column; }
    .about-process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-step-line { display: none !important; }
}
@media (max-width: 480px) {
    .about-hero-visual { grid-template-columns: 1fr; }
    .about-process-grid { grid-template-columns: 1fr; }
    .about-hero-content h2 { font-size: 1.5rem; }
}

/* ============================================================
   CONTACT PAGE - PREMIUM
   ============================================================ */

/* Contact Info Cards */
.contact-cards-section {
    padding: var(--space-3xl) 0;
    background: #fff;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-info-card {
    padding: 28px 24px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    display: block;
}
.contact-info-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.contact-info-icon-phone { background: #eff6ff; color: #1a56db; }
.contact-info-icon-wa { background: #f0fdf4; color: #25D366; }
.contact-info-icon-email { background: #fef3c7; color: #d97706; }
.contact-info-icon-clock { background: #fce7f3; color: #db2777; }
.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}
.contact-info-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}
.contact-info-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}
.contact-info-card:hover .contact-info-action { text-decoration: underline; }

/* Contact Main Grid */
.contact-main-section {
    padding: 0 0 var(--space-3xl);
    background: #fff;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-surface-alt);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
}
.contact-form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}
.contact-form-header p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cf-field {
    margin-bottom: 16px;
}
.cf-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}
.cf-field label span { color: #dc2626; }
.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--color-text);
    background: #fff;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26,86,219,0.06);
}
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #9ca3af; }

.cf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}
.cf-note {
    font-size: 12px;
    color: var(--color-text-muted);
    flex: 1;
}
.cf-note a { color: var(--color-primary); text-decoration: underline; }
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cf-submit:hover { background: #1e40af; transform: translateY(-1px); }

.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.contact-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}
.contact-success p { color: var(--color-text-secondary); font-size: 15px; }
.contact-success a { color: var(--color-primary); font-weight: 600; }

.contact-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #b91c1c;
    font-size: 14px;
}

/* Office Card */
.contact-address-wrap {
    position: sticky;
    top: 100px;
}
.contact-office-card {
    background: #0f172a;
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-office-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26,86,219,0.2), transparent 70%);
    pointer-events: none;
}
.office-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    background: rgba(26,86,219,0.2);
    color: #60a5fa;
    border-radius: 6px;
    margin-bottom: 16px;
}
.contact-office-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}
.office-address {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.office-address svg { color: #60a5fa; flex-shrink: 0; margin-top: 2px; }
.office-address p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
.office-details { margin-bottom: 24px; }
.office-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.od-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.office-detail a,
.office-detail span:not(.od-label) { font-size: 14px; color: #fff; font-weight: 500; text-decoration: none; }
.office-detail a:hover { color: #60a5fa; }
.office-actions {
    display: flex;
    gap: 10px;
}
.office-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.office-btn-wa { background: #25D366; color: #fff; }
.office-btn-wa:hover { background: #1fb855; transform: translateY(-2px); }
.office-btn-map { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.office-btn-map:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* Full Width Map */
.contact-map-fullwidth {
    width: 100%;
    line-height: 0;
}
.contact-map-fullwidth iframe {
    width: 100%;
    height: 450px;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-address-wrap { position: static; }
    .contact-form-wrap { padding: 24px; }
    .cf-row { grid-template-columns: 1fr; }
    .cf-footer { flex-direction: column; align-items: stretch; }
    .cf-submit { justify-content: center; }
    .contact-map-fullwidth iframe { height: 300px; }
    .contact-office-card { padding: 28px 24px; }
}

/* ============================================================
   DISTRICT / İLÇE SEO PAGES
   ============================================================ */
.district-section { padding: var(--space-3xl) 0; background: #fff; }

.district-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-xl);
    background: var(--color-surface-alt);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
}
.district-tab {
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}
.district-tab:hover { color: var(--color-text); background: rgba(0,0,0,0.03); }
.district-tab.active { background: var(--color-primary); color: #fff; box-shadow: 0 2px 8px rgba(26,86,219,0.2); }

.district-results { margin-bottom: var(--space-lg); font-size: 14px; color: var(--color-text-secondary); }
.district-results strong { color: var(--color-text); }

.district-empty {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--color-surface-alt);
    border-radius: 16px;
}
.district-empty h3 { font-size: 18px; color: var(--color-text); margin-bottom: 8px; }
.district-empty p { color: var(--color-text-secondary); margin-bottom: var(--space-lg); }

.district-seo-content {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}
.district-seo-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid var(--color-primary);
}
.district-seo-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.district-crosslinks {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}
.district-crosslinks h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.crosslink-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.crosslink-item {
    padding: 8px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}
.crosslink-item:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(26,86,219,0.04); }

@media (max-width: 768px) {
    .district-tabs { width: 100%; }
    .district-tab { flex: 1; text-align: center; padding: 10px 12px; font-size: 13px; }
}

/* ============================================================
   LEGAL PAGES - PREMIUM LAYOUT
   ============================================================ */
.legal-section { padding: var(--space-3xl) 0; background: #fff; }

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}
.legal-sidebar { position: sticky; top: calc(var(--header-height) + 24px); }
.legal-sidebar-card {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
}
.legal-sidebar-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--color-text); }
.legal-nav { display: flex; flex-direction: column; gap: 2px; }
.legal-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}
.legal-nav a:hover { background: rgba(26,86,219,0.06); color: var(--color-primary); }
.legal-sidebar-info {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.legal-sidebar-info p { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }
.legal-sidebar-info a { display: block; font-size: 13px; color: var(--color-primary); text-decoration: none; font-weight: 600; margin-bottom: 4px; }

/* Legal Meta */
.legal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.legal-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(26,86,219,0.08);
    color: var(--color-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.legal-date { font-size: 13px; color: var(--color-text-muted); }

.legal-intro {
    padding: 20px 24px;
    background: var(--color-surface-alt);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 32px;
}
.legal-intro p { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); margin: 0; }

/* Legal Blocks */
.legal-block {
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    scroll-margin-top: calc(var(--header-height) + 20px);
}
.legal-block:last-child { border-bottom: none; }
.legal-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.legal-block-num {
    font-size: 32px;
    font-weight: 900;
    color: rgba(26,86,219,0.1);
    line-height: 1;
    font-family: var(--font-heading);
    flex-shrink: 0;
}
.legal-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}
.legal-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin: 20px 0 10px;
}
.legal-block p { font-size: 15px; line-height: 1.8; color: var(--color-text-secondary); margin-bottom: 12px; }
.legal-block ul { padding-left: 20px; margin: 12px 0; }
.legal-block li { font-size: 14px; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 8px; }
.legal-block a { color: var(--color-primary); font-weight: 500; }

/* Legal Info Grid */
.legal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}
.legal-info-item {
    padding: 14px 18px;
    background: var(--color-surface-alt);
    border-radius: 10px;
}
.legal-info-label { display: block; font-size: 11px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.legal-info-value { font-size: 14px; font-weight: 500; color: var(--color-text); }

/* Legal List Grid */
.legal-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
}
.legal-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--color-surface-alt);
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}
.legal-list-item span { font-size: 18px; flex-shrink: 0; }

/* Legal Table */
.legal-table { border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; margin: 16px 0; }
.legal-table-row { display: grid; grid-template-columns: 1fr 2fr; gap: 0; }
.legal-table-row > div { padding: 12px 18px; border-bottom: 1px solid var(--color-border); font-size: 14px; color: var(--color-text-secondary); }
.legal-table-row:last-child > div { border-bottom: none; }
.legal-table-header > div { background: var(--color-surface-alt); font-weight: 600; color: var(--color-text); font-size: 13px; }
.legal-table-row:nth-child(3) > div:nth-child(3),
.legal-table .legal-table-row:has(> div:nth-child(3)) { grid-template-columns: 1fr 2fr 1fr; }

/* Legal Highlight */
.legal-highlight {
    padding: 16px 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 14px;
    color: #92400e;
    margin: 16px 0;
    line-height: 1.6;
}

/* Legal Rights Grid */
.legal-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}
.legal-right {
    padding: 16px;
    background: var(--color-surface-alt);
    border-radius: 10px;
    text-align: center;
}
.legal-right-icon { font-size: 24px; margin-bottom: 8px; }
.legal-right p { font-size: 13px; line-height: 1.5; color: var(--color-text-secondary); margin: 0; }

/* Legal Contact Cards */
.legal-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 16px 0;
}
.legal-contact-card {
    padding: 20px;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}
.legal-contact-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--color-text); }
.legal-contact-card p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }
.legal-contact-card a { color: var(--color-primary); }

/* Legal Responsive */
@media (max-width: 768px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }
    .legal-info-grid, .legal-list-grid { grid-template-columns: 1fr; }
    .legal-rights-grid { grid-template-columns: 1fr 1fr; }
    .legal-block-num { font-size: 24px; }
    .legal-block h2 { font-size: 18px; }
}
@media (max-width: 480px) {
    .legal-rights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ENES ERDEM PHOTO STYLES
   ============================================================ */

/* Hakkımızda - Founder Photo */
.founder-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Blog Post - Author inline (meta area) */
.author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--color-border);
}

/* Blog Post - Author card (bottom) */
.blog-author-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(26,86,219,0.15);
}

/* ============================================================
   WHATSAPP WIDGET - Chat Bubble Style
   ============================================================ */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* WhatsApp Button */
.wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    position: relative;
    animation: waPulse 2s ease-in-out infinite;
}
.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* Notification Badge */
.wa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.wa-badge.show {
    opacity: 1;
    transform: scale(1);
}

/* Chat Bubble */
.wa-bubble {
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Bubble Close */
.wa-bubble-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.wa-bubble-close:hover { background: rgba(255,255,255,0.3); }

/* Bubble Header */
.wa-bubble-header {
    background: #075e54;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}
.wa-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #128C7E;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
}
.wa-header-info strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.wa-header-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Bubble Body */
.wa-bubble-body {
    padding: 20px 16px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ccc' fill-opacity='0.15'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='300' height='300' fill='url(%23p)'/%3E%3C/svg%3E");
}
.wa-message {
    background: #fff;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    position: relative;
    max-width: 90%;
}
.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
}
.wa-message p {
    font-size: 14px;
    line-height: 1.5;
    color: #111827;
    margin: 0;
}
.wa-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Reply Button */
.wa-reply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.wa-reply-btn:hover { background: #1fb855; }

/* Mobile */
@media (max-width: 480px) {
    .wa-widget { bottom: 16px; right: 16px; }
    .wa-btn { width: 54px; height: 54px; }
    .wa-bubble { width: calc(100vw - 32px); max-width: 340px; }
}
