/* ======================================
   Av. Özgecan Özkaya - Ana Stil Dosyası
   ====================================== */

:root {
    --navy: #1a2a3a;
    --navy-light: #243546;
    --navy-dark: #0f1c28;
    --gold: #c8a951;
    --gold-light: #dcc577;
    --gold-dark: #b08f3a;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --text: #333333;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sayfa scrollbar'ı — ince, zarif görünüm */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--navy-dark);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
}

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

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

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200,169,81,0.4);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-navy:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ---- Navbar ---- */
#mainNav {
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
#mainNav.scrolled {
    padding: 8px 0;
    background: rgba(26, 42, 58, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-icon {
    font-size: 1.8rem;
    color: var(--gold);
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--white);
}
.brand-text small {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a52 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,81,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,81,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,169,81,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,169,81,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Merkezi hero metin bloğu */
.hero-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,81,0.12);
    border: 1px solid rgba(200,169,81,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.18;
}
.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.68);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.85;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 200px;
}
.hero-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}
.hero-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.hero-btn:hover .hero-btn-icon {
    transform: scale(1.1);
}
.hero-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: left;
}
.hero-btn-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}
.hero-btn-text small {
    font-size: 0.72rem;
    opacity: 0.7;
}

/* Primary - Online Danışmanlık */
.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(200,169,81,0.3);
}
.hero-btn-primary .hero-btn-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.hero-btn-primary:hover {
    color: var(--white);
    box-shadow: 0 8px 30px rgba(200,169,81,0.45);
}
.hero-btn-primary .hero-btn-text small { opacity: 0.85; }

/* Call - Hemen Ara */
.hero-btn-call {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-btn-call .hero-btn-icon {
    background: rgba(76,175,80,0.2);
    color: #66bb6a;
}
.hero-btn-call:hover {
    color: var(--white);
    border-color: rgba(76,175,80,0.4);
    box-shadow: 0 8px 25px rgba(76,175,80,0.15);
}

/* Outline - Çalışma Alanlarım */
.hero-btn-outline {
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-btn-outline .hero-btn-icon {
    background: rgba(200,169,81,0.15);
    color: var(--gold);
}
.hero-btn-outline:hover {
    color: var(--white);
    border-color: rgba(200,169,81,0.3);
    box-shadow: 0 8px 25px rgba(200,169,81,0.1);
}

/* İstatistik kartları */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.hero-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 18px 26px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.35s ease, width 0.35s ease;
}
.hero-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,169,81,0.35);
    box-shadow: 0 12px 40px rgba(200,169,81,0.12);
}
.hero-stat-card:hover::before {
    opacity: 1;
    width: 80%;
}
.hero-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200,169,81,0.2), rgba(200,169,81,0.08));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: transform 0.35s ease;
}
.hero-stat-card:hover .hero-stat-icon {
    transform: scale(1.1);
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.4px;
    font-weight: 500;
    display: block;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}
.hero-scroll-dot {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.hero-scroll-dot::before {
    content: '';
    width: 3px;
    height: 7px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(10px); opacity: 0.3; }
}

/* ---- Section Styles ---- */
section {
    padding: 80px 0;
}
.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-text {
    color: var(--gray);
    line-height: 1.8;
}

/* ---- About Short ---- */
.section-about-short {
    background: var(--white);
}
.about-image-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 5rem;
}
.about-image-placeholder.large {
    height: 500px;
}
.about-image-placeholder p {
    font-size: 1rem;
    margin-top: 15px;
}
.about-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    background: var(--navy);
}
.about-image-frame.large {
    height: 500px;
}
.about-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}
.about-features li {
    padding: 6px 0;
    color: var(--text);
}
.about-features li i {
    color: var(--gold);
    margin-right: 10px;
}

/* ---- Areas Cards ---- */
.section-areas {
    background: var(--light);
}
.area-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.area-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.area-card:hover .area-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}
.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.area-card p {
    color: var(--gray);
    font-size: 0.92rem;
    flex: 1;
}
.area-card-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    justify-content: center;
}
.area-card-cta h3,
.area-card-cta p {
    color: rgba(255,255,255,0.85);
}
.area-card-cta .area-icon {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

/* ---- Articles (anasayfa son makaleler) ---- */
.section-articles {
    background: var(--light);
}
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
/* Kart görseli */
.article-card-img-link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}
.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.article-card:hover .article-card-img {
    transform: scale(1.04);
}
.article-card-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.article-card-img-placeholder i {
    font-size: 3rem;
    color: rgba(200,169,81,0.5);
}
.article-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card-body p {
    flex: 1;
}
.article-date {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}
.article-card h3 {
    font-size: 1.15rem;
    margin: 10px 0;
}
.article-card h3 a {
    color: var(--navy);
}
.article-card h3 a:hover {
    color: var(--gold);
}
.article-card p {
    color: var(--gray);
    font-size: 0.9rem;
}
.read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}
.read-more:hover {
    color: var(--gold-dark);
}
.read-more i {
    transition: var(--transition);
}
.read-more:hover i {
    transform: translateX(5px);
}

/* ---- Video İçerikler ---- */
.section-shorts {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.shorts-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(255,0,0,0.2);
}
.shorts-header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    margin: 18px auto 0;
}
.shorts-wrapper {
    position: relative;
    padding: 0 28px;
}
.shorts-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 4px;
}
.shorts-track::-webkit-scrollbar {
    display: none;
}
.shorts-item {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
    animation: shortsFadeIn 0.5s ease both;
}
@keyframes shortsFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.shorts-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
.shorts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.shorts-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #0a0a0a;
}
.shorts-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.shorts-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.shorts-card-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shorts-card-yt-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,0,0,0.08);
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.shorts-card-yt-link:hover {
    background: #ff0000;
    color: var(--white);
    transform: scale(1.1);
}
.shorts-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(200,169,81,0.3);
    background: var(--white);
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.shorts-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.shorts-btn-prev { left: -20px; }
.shorts-btn-next { right: -20px; }
@media (max-width: 767px) {
    .shorts-btn { display: none; }
    .shorts-wrapper { padding: 0; }
    .shorts-item { flex: 0 0 min(260px, 82vw); }
    .shorts-header-icon { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ---- CTA ---- */
.section-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0;
    color: var(--white);
}
.section-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}
.section-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 120px 0 50px;
    text-align: center;
}
.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}
.page-header .breadcrumb-item a {
    color: var(--gold);
}
.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ---- About Detail ---- */
.section-about-detail {
    padding-top: 60px;
}
.about-stats .stat-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
}
.about-stats .stat-box:hover {
    background: var(--navy);
    color: var(--white);
}
.about-stats .stat-box:hover i,
.about-stats .stat-box:hover .stat-label,
.about-stats .stat-box:hover strong {
    color: var(--white);
}
.about-stats .stat-box i {
    color: var(--gold);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}
.about-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 4px;
}
.about-stats .stat-box strong {
    font-size: 1.5rem;
    color: var(--navy);
    font-family: var(--font-heading);
}

/* ---- Why Me ---- */
.section-why-me {
    background: var(--light);
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ---- Area Detail ---- */
.section-areas-detail {
    padding-top: 50px;
}
.area-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}
.area-detail-card:hover {
    box-shadow: var(--shadow-hover);
}
.area-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.area-detail-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.area-detail-card p {
    color: var(--gray);
    margin-bottom: 15px;
}
.area-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.area-services span {
    background: var(--light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--navy);
}
.area-services span i {
    color: var(--gold);
    margin-right: 5px;
}

/* ---- Articles List ---- */
.section-articles-list {
    padding: 50px 0 80px;
}

/* ---- Article Detail ---- */
.section-article-detail {
    padding: 50px 0 80px;
}
.article-full {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
/* Makale kapak görseli — kartın tam üstüne yapışır */
.article-full.has-cover {
    padding-top: 0;
}
.article-cover-img {
    margin: 0 -40px 30px -40px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.article-cover-img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 0.9rem;
}
.article-meta i {
    color: var(--gold);
    margin-right: 5px;
}
.article-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
}
.article-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}
.article-content img {
    max-width: 100%;
    height: auto;
}
.article-content table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
    border-collapse: collapse;
}
.article-content table td,
.article-content table th {
    padding: 8px 12px;
    border: 1px solid var(--gray-light);
}
.article-content iframe {
    max-width: 100%;
}
.article-content pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
.article-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}
.share-btn.whatsapp { background: #25d366; }
.share-btn.twitter { background: #1da1f2; }
.share-btn:hover { transform: scale(1.1); color: var(--white); }

/* ---- Sidebar ---- */
.sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.sidebar-links {
    list-style: none;
    padding: 0;
}
.sidebar-links li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}
.sidebar-links li:last-child { border: none; }
.sidebar-links a {
    color: var(--text);
    font-size: 0.9rem;
}
.sidebar-links a:hover {
    color: var(--gold);
}
.sidebar-links a i {
    color: var(--gold);
    margin-right: 8px;
}

/* ---- Contact ---- */
.section-contact {
    padding: 50px 0 80px;
}
.section-contact .row > [class*="col-"] {
    min-width: 0;
}
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 35px;
    color: var(--white);
    max-width: 100%;
    overflow-wrap: break-word;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item > div:not(.contact-icon) {
    min-width: 0;
    flex: 1;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(200,169,81,0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-item h5 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-info-item a {
    color: rgba(255,255,255,0.8);
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.contact-info-item a:hover {
    color: var(--gold);
}
.contact-info-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
    overflow-wrap: break-word;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}
.contact-form-card h3 {
    margin-bottom: 5px;
}
.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ---- Footer ---- */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-brand i {
    color: var(--gold);
    font-size: 1.5rem;
}
.footer-brand h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { padding: 5px 0; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    padding: 5px 0;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0 15px;
}
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ---- Reviews ---- */
.section-reviews {
    background: var(--white);
    padding: 80px 0;
}

/* Yorum listesi — alt alta, kaydırılabilir */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 10px;
}
/* reviews-list özel scrollbar */
.reviews-list::-webkit-scrollbar {
    width: 6px;
}
.reviews-list::-webkit-scrollbar-track {
    background: transparent;
}
.reviews-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
.reviews-list::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.review-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}
.review-card:hover {
    box-shadow: var(--shadow);
    background: var(--white);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}
.review-meta {
    flex: 1;
}
.review-meta strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}
.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}
.review-stars .fas.filled {
    color: #f4c430;
    font-size: 0.8rem;
}
.review-stars .fas.empty {
    color: #ddd;
    font-size: 0.8rem;
}
.review-date {
    color: var(--gray);
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.review-text {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.reviews-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    opacity: 0.5;
}

/* Yorum formu kartı */
.review-form-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 35px;
    color: var(--white);
    position: sticky;
    top: 100px;
}
.review-form-card h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.review-form-card h4 i {
    margin-right: 8px;
}
.review-form-card .form-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
}
.review-form-card .form-control {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.review-form-card .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}
.review-form-card .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(200,169,81,0.25);
    color: var(--white);
}
.review-form-card .text-muted {
    color: rgba(255,255,255,0.5) !important;
}

/* CSS-only yıldız derecelendirme input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.star-rating-input input[type="radio"] {
    display: none;
}
.star-rating-input label {
    cursor: pointer;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.15s ease;
    line-height: 1;
}
/* Seçili ve hover stilleri — rtl sıralaması sayesinde çalışır */
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #f4c430;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 9998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- Pagination ---- */
.pagination .page-link {
    color: var(--navy);
    border-color: var(--gray-light);
}
.pagination .page-item.active .page-link {
    background: var(--navy);
    border-color: var(--navy);
}

/* ---- Form Styles ---- */
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(200,169,81,0.25);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .navbar-collapse {
        background: var(--navy);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
    }
    .hero-btn { min-width: 180px; padding: 12px 20px; }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .hero-stat-card { padding: 22px 14px 20px; }
    .hero-stat-number { font-size: 1.8rem; }
    .hero-stat-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .reviews-list {
        max-height: 380px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-btn { min-width: unset; width: 100%; padding: 12px 18px; }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 30px;
    }
    .hero-stat-card { padding: 18px 10px 16px; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stat-icon { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 10px; }
    .hero-stat-label { font-size: 0.75rem; }
    .hero-scroll { display: none; }
    section {
        padding: 50px 0;
    }
    .page-header {
        padding: 100px 0 35px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .area-detail-card {
        padding: 25px;
    }
    .article-full {
        padding: 20px;
    }
    /* Mobilde padding 20px olduğu için margin da buna göre ayarlanmalı */
    .article-cover-img {
        margin: 0 -20px 25px -20px;
    }
    .contact-form-card {
        padding: 25px;
    }
    /* Küçük ekranlarda WhatsApp butonu daha küçük */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    /* Kart görseli daha kısa */
    .article-card-img,
    .article-card-img-placeholder {
        height: 160px;
    }
}

/* Çalışma alanı kart linki */
a.area-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
a.area-card-link .area-card {
    transition: transform .2s ease, box-shadow .2s ease;
}
a.area-card-link:hover .area-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Tekil çalışma alanı sayfası */
.section-area-single {
    padding: 60px 0;
}
.section-area-single .area-services span {
    display: inline-block;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px;
    font-size: .9rem;
}
