/* ============================================
   PANORAMA TURKEY - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #c8a96e;
    --primary-dark: #a8893e;
    --primary-light: #e8c98e;
    --secondary: #1a2744;
    --secondary-light: #243460;
    --dark: #0d1421;
    --text: #2c3e50;
    --text-light: #6b7a8d;
    --text-muted: #9aa5b4;
    --white: #ffffff;
    --bg-light: #f8f6f1;
    --bg-section: #f0ece3;
    --border: #e0d9cc;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 30px rgba(200, 169, 110, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-en: 'Inter', sans-serif;
    --font-en-display: 'Playfair Display', serif;
    --font-ar: 'Noto Kufi Arabic', sans-serif;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-en);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.rtl {
    font-family: var(--font-ar);
    direction: rtl;
    text-align: right;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== HEADER / NAVBAR ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: rgba(13, 20, 33, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    padding: 0 2rem;
    transition: var(--transition);
}

.site-header.scrolled .header-top {
    background: rgba(13, 20, 33, 0.97);
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.site-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
}

.site-logo .logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(200, 169, 110, 0.1);
}

.nav-link .nav-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: rgba(13, 20, 33, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lg);
}

.rtl .dropdown {
    left: auto;
    right: 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown a:hover {
    color: var(--primary);
    background: rgba(200, 169, 110, 0.1);
    padding-left: 1.4rem;
}

.rtl .dropdown a:hover {
    padding-left: 1rem;
    padding-right: 1.4rem;
}

.dropdown-divider {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    padding: 0.8rem 1rem 0.3rem;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: rgba(200, 169, 110, 0.15);
    border-color: var(--primary);
}

.btn-consult {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.5);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Nav - hidden by default on ALL screen sizes */
.mobile-nav {
    display: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 20, 33, 0.85) 0%,
            rgba(13, 20, 33, 0.5) 50%,
            rgba(13, 20, 33, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
    font-family: var(--font-en-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.rtl .hero h1 {
    font-family: var(--font-ar);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(200, 169, 110, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    background: rgba(13, 20, 33, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.rtl .hero-stats {
    right: auto;
    left: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ========== SECTION STYLES ========== */
section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1.2rem;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-en-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.rtl .section-title {
    font-family: var(--font-ar);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 110, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== PROPERTY / ARTICLE CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 110, 0.3);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .card-image img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rtl .card-badge {
    left: auto;
    right: 1rem;
}

.card-body {
    padding: 1.5rem;
}

.card-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.card-title a:hover {
    color: var(--primary);
}

.card-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    gap: 8px;
}

/* ========== PROJECT CARD ========== */
.project-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card .card-image {
    height: 320px;
}

.project-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(13, 20, 33, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(200, 169, 110, 0.3);
}

.project-card .card-body {
    background: var(--white);
}

.project-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.project-details {
    display: flex;
    gap: 1.2rem;
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.project-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-detail .label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.project-detail .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

/* ========== ARTICLE PAGE HERO ========== */
.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 20, 33, 0.95) 0%, rgba(13, 20, 33, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3.5rem;
    width: 100%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .sep {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
    color: var(--primary);
}

.page-hero h1 {
    font-family: var(--font-en-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.rtl .page-hero h1 {
    font-family: var(--font-ar);
}

.page-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.page-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== ARTICLE CONTENT ========== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-body h2 {
    font-family: var(--font-en-display);
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.rtl .article-body h2 {
    font-family: var(--font-ar);
}

.article-body h3 {
    font-size: 1.25rem;
    color: var(--secondary-light);
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.article-body p {
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.rtl .article-body ul,
.rtl .article-body ol {
    padding-left: 0;
    padding-right: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.7;
}

.article-body img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, rgba(200, 169, 110, 0.04) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.rtl .highlight-box {
    border-left: none;
    border-right: 4px solid var(--primary);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--secondary);
}

/* ========== STATS BOX FOR ARTICLE ========== */
.stats-box {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stats-box .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stats-box .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* ========== SIDEBAR ========== */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.rtl .sidebar-widget-title::before {
    display: none;
}

.rtl .sidebar-widget-title::after {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
    order: -1;
}

.widget-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.widget-link-list a:last-child {
    border-bottom: none;
}

.widget-link-list a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.rtl .widget-link-list a:hover {
    padding-left: 0;
    padding-right: 6px;
}

.widget-link-list a .arrow {
    color: var(--text-muted);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    text-align: center;
}

.cta-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.cta-widget .cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.btn-gold {
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.5);
}

/* ========== WHY TURKEY SECTION ========== */
.why-section {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 550px;
    box-shadow: var(--shadow-lg);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(13, 20, 33, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
}

.why-image-badge .badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.why-image-badge .badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-point:hover {
    border-color: rgba(200, 169, 110, 0.4);
    box-shadow: var(--shadow-sm);
}

.why-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(200, 169, 110, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-point-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.why-point-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 40%, #1a1a2e 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
}

.cta-banner h2 {
    font-family: var(--font-en-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.rtl .cta-banner h2 {
    font-family: var(--font-ar);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.footer-brand .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand .logo-text span {
    color: var(--primary);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 1024px) {

    .nav-menu,
    .nav-actions .btn-consult {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(13, 20, 33, 0.97);
        backdrop-filter: blur(30px);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(200, 169, 110, 0.15);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav a {
        display: block;
        padding: 0.75rem 1rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-nav a:hover {
        color: var(--primary);
        background: rgba(200, 169, 110, 0.1);
    }

    .mobile-nav .mobile-section-title {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--primary);
        padding: 1rem 1rem 0.3rem;
        font-weight: 600;
    }

    .mobile-nav .btn-gold {
        margin-top: 1rem;
        display: block;
    }
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .article-sidebar {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-stats {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-box {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: 400px;
    }

    .hero-actions {
        flex-direction: column;
    }
}