/* =============================================
   ADA HUKUK - ANA TEMA CSS
   Varsayılan: Lacivert & Altın
   ============================================= */

/* ---- Tema Değişkenleri ---- */
:root {
    --primary:       #1a2c5b;
    --primary-dark:  #0d1b3e;
    --primary-light: #2d4a8a;
    --gold:          #c9a84c;
    --gold-light:    #e8c96a;
    --gold-dark:     #a8873d;
    --text:          #2c3e50;
    --text-light:    #6b7280;
    --text-muted:    #9ca3af;
    --bg:            #ffffff;
    --bg-soft:       #f8f9fc;
    --bg-section:    #f0f3f8;
    --border:        #e5e9f0;
    --shadow:        0 4px 20px rgba(26,44,91,.08);
    --shadow-lg:     0 10px 40px rgba(26,44,91,.12);
    --shadow-hover:  0 15px 50px rgba(26,44,91,.18);
    --radius:        10px;
    --radius-lg:     16px;
    --transition:    all .3s ease;
    --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

p { margin-bottom: 1rem; color: var(--text-light); }

/* ---- Yardımcı Sınıflar ---- */
.text-gold       { color: var(--gold) !important; }
.text-primary-c  { color: var(--primary) !important; }
.bg-primary-c    { background: var(--primary) !important; }
.bg-gold         { background: var(--gold) !important; }
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

/* ---- Butonlar ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    border: none; border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700; font-size: .95rem;
    letter-spacing: .5px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,.4);
    color: var(--primary);
}

.btn-primary-c {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border: none; border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600; font-size: .95rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-primary-c:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,44,91,.35);
    color: #fff;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold); border: 2px solid var(--gold);
    border-radius: 50px; padding: 12px 32px;
    font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold); color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff; border: 2px solid rgba(255,255,255,.6);
    border-radius: 50px; padding: 12px 32px;
    font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ---- Section Title ---- */
.section-title {
    text-align: center;
    margin-bottom: 55px;
}
.section-title .label {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,168,76,.1); color: var(--gold);
    padding: 6px 18px; border-radius: 50px;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 15px;
}
.section-title p {
    font-size: 1.05rem; max-width: 600px; margin: 0 auto;
    color: var(--text-light);
}
.section-title .divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 18px auto 0; border-radius: 2px;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.7);
    padding: 9px 0;
    font-size: .8rem;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.top-bar a { color: rgba(255,255,255,.7); }
.top-bar a:hover { color: var(--gold); }
.top-bar .separator { margin: 0 12px; color: rgba(255,255,255,.2); }

/* ---- HEADER / NAVBAR ---- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(26,44,91,.08);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(26,44,91,.15);
}
.navbar { padding: 14px 0; }
.navbar-brand img { height: 100px; width: auto; transition: var(--transition); }
.navbar-brand:hover img { opacity: .85; }

.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 600; font-size: .82rem;
    padding: 8px 10px !important;
    letter-spacing: .2px;
    position: relative;
    transition: var(--transition);
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
    gap: 4px;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform .3s ease;
    border-radius: 1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-nav .dropdown-menu {
    border: none; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    padding: 8px 0; min-width: 220px;
    animation: dropdownIn .2s ease;
}
@keyframes dropdownIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.navbar-nav .dropdown-item {
    font-size: .87rem; font-weight: 500;
    padding: 9px 20px; color: var(--text);
    transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
    background: rgba(201,168,76,.08);
    color: var(--gold); padding-left: 25px;
}

.header-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary) !important;
    border-radius: 50px; padding: 10px 22px !important;
    font-weight: 700; font-size: .85rem;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,.4); color: var(--primary) !important; }
.header-cta::after { display: none !important; }

.navbar-toggler {
    border: 2px solid var(--primary); border-radius: 8px;
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231a2c5b' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ---- HERO BÖLÜMÜ ---- */
.hero {
    position: relative;
    min-height: 88vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201,168,76,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,.05) 0%, transparent 50%);
}
.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .12;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23c9a84c' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
    color: var(--gold); padding: 7px 18px; border-radius: 50px;
    font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: #fff; line-height: 1.2;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 1.1rem; color: rgba(255,255,255,.8);
    max-width: 540px; margin-bottom: 36px;
}
.hero-stats {
    display: flex; gap: 30px; margin-top: 45px;
    padding-top: 35px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }

.hero-image {
    position: relative; z-index: 2;
    text-align: center;
}
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    max-height: 560px; object-fit: cover;
    border: 4px solid rgba(201,168,76,.3);
}
.hero-image-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: #fff; border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    display: flex; align-items: center; gap: 12px;
}
.hero-image-badge .icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.hero-image-badge .info .num { font-weight: 800; color: var(--primary); font-size: 1.3rem; line-height: 1; }
.hero-image-badge .info .lbl { font-size: .72rem; color: var(--text-light); }

/* ---- HIZMETLER SECTION ---- */
.services-section { background: var(--bg-soft); }

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transition: transform .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201,168,76,.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, rgba(26,44,91,.08), rgba(26,44,91,.04));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}
.service-card h4 {
    font-size: 1.1rem; margin-bottom: 10px; color: var(--primary);
}
.service-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 18px; }
.service-link {
    color: var(--gold); font-weight: 600; font-size: .87rem;
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* ---- HAKKIMIZDA SECTION ---- */
.about-section {}
.about-image-wrap { position: relative; }
.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%; object-fit: cover;
}
.about-image-wrap .experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border-radius: var(--radius);
    padding: 20px 25px; text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.experience-badge .lbl { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 4px; }

.about-features { margin: 25px 0; }
.about-feature {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.about-feature:last-child { border-bottom: none; }
.about-feature .feat-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,.1);
    border-radius: var(--radius-sm, 8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
}
.about-feature h6 { font-size: .9rem; margin-bottom: 3px; color: var(--primary); }
.about-feature p { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ---- WHY US ---- */
.why-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative; overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.why-section .section-title h2,
.why-section .section-title p { color: #fff; }
.why-section .section-title p { color: rgba(255,255,255,.7); }

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-lg);
    padding: 32px 25px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(201,168,76,.1);
    transform: translateY(-4px);
    border-color: rgba(201,168,76,.4);
}
.why-card .icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--primary);
}
.why-card h5 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* ---- BLOG ---- */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201,168,76,.2);
}
.blog-card-img {
    position: relative; overflow: hidden;
    height: 210px;
}
.blog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--primary);
    font-size: .72rem; font-weight: 700; padding: 4px 12px;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.blog-card-body { padding: 24px; }
.blog-meta {
    display: flex; align-items: center; gap: 15px;
    font-size: .78rem; color: var(--text-muted);
    margin-bottom: 12px;
}
.blog-card-body h4 {
    font-size: 1.05rem; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-body h4 a { color: var(--primary); }
.blog-card-body h4 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .87rem; color: var(--text-light); margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--gold); font-weight: 600; font-size: .87rem; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; color: var(--gold-dark); }

/* ---- İLETİŞİM ---- */
.contact-section {}
.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    color: #fff; height: 100%;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,.75); margin-bottom: 30px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,.2);
    border-radius: var(--radius-sm, 8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
}
.contact-info-item .label { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-info-item .value { font-weight: 600; color: #fff; font-size: .95rem; }
.contact-info-item .value a { color: #fff; }
.contact-info-item .value a:hover { color: var(--gold); }

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px; font-size: .9rem;
    transition: var(--transition);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.contact-form-card .form-label {
    font-weight: 600; color: var(--primary); font-size: .87rem;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
}
.footer-brand img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 18px; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.8; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); transform: translateY(-2px); }

.footer-heading {
    color: var(--gold); font-family: 'Poppins', sans-serif;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; }
.footer-links a {
    color: rgba(255,255,255,.6); font-size: .88rem;
    display: flex; align-items: center; gap: 7px;
    transition: var(--transition);
}
.footer-links a::before {
    content: '›'; color: var(--gold); font-size: 1rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact-item {
    display: flex; gap: 12px; margin-bottom: 14px;
}
.footer-contact-item .icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(201,168,76,.1);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: .85rem;
}
.footer-contact-item .info { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-item .info strong { color: rgba(255,255,255,.85); display: block; }

.footer-bottom {
    background: rgba(0,0,0,.25);
    margin-top: 50px; padding: 18px 0;
    text-align: center; font-size: .8rem;
    color: rgba(255,255,255,.4);
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .credit { display: flex; align-items: center; justify-content: center; gap: 5px; }
.footer-bottom .hido-link { color: var(--gold); font-weight: 700; }
.footer-bottom .hido-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ---- BREADCRUMB ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: .85rem; }
.breadcrumb-custom a { color: rgba(255,255,255,.65); }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom .sep { color: rgba(255,255,255,.3); }
.breadcrumb-custom .current { color: var(--gold); font-weight: 600; }

/* Bootstrap breadcrumb override — koyu hero arka planında (tüm dark section'lar) */
.page-hero .breadcrumb,
section[style*="var(--primary)"] .breadcrumb { background: transparent; padding: 0; margin: 0 0 12px; }

.page-hero .breadcrumb-item,
section[style*="var(--primary)"] .breadcrumb-item { color: rgba(255,255,255,.8); font-size: .85rem; }

.page-hero .breadcrumb-item a,
section[style*="var(--primary)"] .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }

.page-hero .breadcrumb-item a:hover,
section[style*="var(--primary)"] .breadcrumb-item a:hover { color: var(--gold); }

.page-hero .breadcrumb-item.active,
section[style*="var(--primary)"] .breadcrumb-item.active { color: var(--gold); font-weight: 600; }

.page-hero .breadcrumb-item + .breadcrumb-item::before,
section[style*="var(--primary)"] .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* Hero h1 ve lead — her koyu section'da okunabilir */
.page-hero h1, section[style*="var(--primary)"] h1 { color: #fff !important; }
.page-hero .lead, section[style*="var(--primary)"] .lead { color: rgba(255,255,255,.9) !important; opacity: 1 !important; }
.page-hero p, section[style*="var(--primary)"] p { color: rgba(255,255,255,.85); }

/* ---- CARDS / GENEL ---- */
.hover-card {
    transition: var(--transition);
    cursor: pointer;
}
.hover-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed; bottom: 28px; left: 25px; z-index: 999;
    display: flex; align-items: center;
    background: #25D366;
    border-radius: 50px;
    color: #fff; text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,.5);
    transition: box-shadow .35s ease, transform .35s ease;
    animation: pulseGreen 2.5s infinite;
    overflow: hidden;
}
.whatsapp-float .wa-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem; flex-shrink: 0;
}
.whatsapp-float .wa-label {
    max-width: 0; overflow: hidden; white-space: nowrap;
    font-weight: 700; font-size: .88rem; letter-spacing: .3px;
    transition: max-width .4s ease, padding-right .4s ease;
    padding-right: 0;
}
.whatsapp-float:hover .wa-label { max-width: 160px; padding-right: 20px; }
.whatsapp-float:hover { color: #fff; box-shadow: 0 6px 32px rgba(37,211,102,.7); transform: translateY(-3px); }
@keyframes pulseGreen {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ---- Scroll Top ---- */
.scroll-top {
    position: fixed; bottom: 90px; right: 25px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .9rem;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26,44,91,.3);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    padding: 16px 0;
    font-size: .87rem;
    border-top: 2px solid rgba(201,168,76,.3);
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--gold); }
.cookie-banner .btn-cookie {
    background: var(--gold); color: var(--primary);
    border: none; border-radius: 50px;
    padding: 8px 22px; font-weight: 700; font-size: .82rem;
    cursor: pointer; transition: var(--transition);
}
.cookie-banner .btn-cookie:hover { opacity: .9; }

/* ---- Alert ---- */
.alert { border-radius: var(--radius); border: none; font-size: .9rem; }

/* ---- Pagination ---- */
.pagination .page-link { color: var(--primary); border-color: var(--border); border-radius: 8px !important; margin: 0 2px; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-link:hover { background: rgba(201,168,76,.1); color: var(--gold); border-color: var(--gold); }

/* ---- Animations ---- */
/* Temel: görünmeden önce gizli */
.fade-up,
.fade-left,
.fade-right,
.fade-down,
.zoom-in,
.fade-in {
    opacity: 0;
    transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
}

.fade-up    { transform: translateY(35px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-down  { transform: translateY(-30px); }
.zoom-in    { transform: scale(.92); }
.fade-in    { transform: none; }

/* Görünür hale gelince */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.fade-down.visible,
.zoom-in.visible,
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Gecikme yardımcıları */
.anim-delay-1 { transition-delay: .1s !important; }
.anim-delay-2 { transition-delay: .2s !important; }
.anim-delay-3 { transition-delay: .3s !important; }
.anim-delay-4 { transition-delay: .4s !important; }
.anim-delay-5 { transition-delay: .5s !important; }
.anim-delay-6 { transition-delay: .6s !important; }

/* Daha yavaş veya hızlı animasyon */
.anim-slow  { transition-duration: 1s !important; }
.anim-fast  { transition-duration: .35s !important; }

/* Reduce motion: erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
    .fade-up, .fade-left, .fade-right, .fade-down, .zoom-in, .fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .navbar-brand img { height: 81px; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-image { margin-top: 40px; }
    .hero-image-badge { left: 0; bottom: 15px; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 1.8rem; }
    .about-image-wrap .experience-badge { right: 0; bottom: -10px; }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 15px; }
    .contact-form-card { padding: 25px 20px; }
    .footer-about { max-width: 100%; }
    .top-bar .d-none-sm { display: none; }
}

/* ---- Yardımcı Font Ağırlıkları ---- */
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* ---- Section Label ---- */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,.1); color: var(--gold);
    padding: 5px 16px; border-radius: 50px;
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ---- Outline Primary Button ---- */
.btn-outline-primary-c {
    background: transparent;
    color: var(--primary); border: 2px solid var(--primary);
    border-radius: 50px; padding: 10px 28px;
    font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-primary-c:hover {
    background: var(--primary); color: #fff;
    transform: translateY(-1px);
}
.btn-outline-primary-c.btn-sm { padding: 7px 18px; font-size: .82rem; }

/* ---- Page Content (CMS) ---- */
.page-content { line-height: 1.9; color: var(--text-light); }
.page-content h2 { font-size: 1.5rem; color: var(--primary); margin: 2rem 0 .9rem; }
.page-content h3 { font-size: 1.2rem; color: var(--primary); margin: 1.6rem 0 .7rem; }
.page-content p  { margin-bottom: 1.1rem; }
.page-content ul, .page-content ol { padding-left: 1.6rem; margin-bottom: 1.1rem; }
.page-content li { margin-bottom: .5rem; }
.page-content a  { color: var(--gold); text-decoration: underline; }
.page-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 12px 20px; margin: 1.5rem 0;
    background: var(--bg-soft);
    font-style: italic; color: #555;
}
.page-content img { max-width: 100%; border-radius: var(--radius); margin: 1rem 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.page-content th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; }
.page-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); }

/* ============================================================
   ULTRA PROFESSİONEL TASARIM ÖĞELERİ
   ============================================================ */

/* ---- Gold Decorative Divider ---- */
.gold-divider {
    display: flex; align-items: center; gap: 16px; margin: 20px 0;
}
.gold-divider::before, .gold-divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider-icon {
    width: 32px; height: 32px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content:center;
    color: var(--primary); font-size: .75rem; flex-shrink: 0;
}

/* ---- Section Hero Wave ---- */
.section-wave {
    overflow: hidden; line-height: 0;
}
.section-wave svg { display: block; }

/* ---- Premium Card ---- */
.premium-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    overflow: hidden;
}
.premium-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: rgba(201,168,76,.3);
}
.premium-card .card-top-line {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

/* ---- Gold Number Badge ---- */
.gold-number {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light,#e8c96a));
    color: var(--primary); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(201,168,76,.35);
    flex-shrink: 0;
}

/* ---- Quote Block ---- */
.quote-block {
    border-left: 5px solid var(--gold);
    padding: 20px 28px;
    background: var(--bg-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 2rem 0;
}
.quote-block cite {
    display: block; margin-top: 10px;
    font-style: normal; font-weight: 600;
    color: var(--primary); font-size: .9rem;
}

/* ---- Stats Counter Strip ---- */
.stats-strip {
    background: var(--primary);
    padding: 48px 0;
    position: relative;
}
.stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-strip .stat-item { position: relative; z-index: 1; text-align: center; }
.stats-strip .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--gold);
    line-height: 1;
}
.stats-strip .stat-lbl {
    font-size: .82rem; color: rgba(255,255,255,.65);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ---- Feature Icon Box ---- */
.feature-icon-box {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light, #2d4a8a));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(26,44,91,.25);
    flex-shrink: 0;
}

/* ---- Section Separator (horizontal gold line) ---- */
.sep-gold {
    border: none; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    margin: 0;
}

/* ---- Professional List ---- */
.pro-list { list-style: none; padding: 0; margin: 0; }
.pro-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: .92rem; color: var(--text);
}
.pro-list li:last-child { border-bottom: none; }
.pro-list li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--gold); font-size: .95rem; flex-shrink: 0; margin-top: 2px;
}

/* ---- Service Detail Header Badge ---- */
.service-area-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px; padding: 8px 20px;
    font-size: .8rem; font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 16px;
}

/* ---- Table Responsive Scroll Hint ---- */
@media (max-width: 576px) {
    .page-content table { font-size: .82rem; }
}

/* ============================================================
   KAPSAMLI RESPONSIVE KURALLAR
   ============================================================ */

/* ---- Tablet Geniş (≤1199px) ---- */
@media (max-width: 1199px) {
    .section-padding { padding: 80px 0; }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
}

/* ---- Tablet (≤991px) ---- */
@media (max-width: 991px) {
    /* Header */
    .site-header .navbar { padding: 10px 0; }
    .navbar-brand img { height: 81px; }
    .navbar-collapse { background: #fff; border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg); margin-top: 8px; }
    .navbar-nav .nav-link { padding: 10px 14px !important; border-bottom: 1px solid var(--border); }
    .navbar-nav .nav-link:last-child { border-bottom: none; }
    .navbar-nav .nav-link::after { display: none; }
    .header-cta { margin: 8px 14px 4px; display: inline-flex; }

    /* Hero */
    .hero { min-height: auto; padding: 60px 0 70px; }
    .hero-image { margin-top: 40px; }
    .hero-image img { max-height: 380px; }
    .hero-image-badge { left: 0; bottom: 15px; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 1.8rem; }

    /* About */
    .about-image-wrap .experience-badge { right: 0; bottom: -10px; }

    /* Contact */
    .contact-info-card { padding: 32px 24px; margin-bottom: 24px; }
    .contact-form-card { padding: 32px 24px; }

    /* Footer */
    .footer-about { max-width: 100%; }

    /* Stats strip */
    .stats-strip { padding: 36px 0; }
}

/* ---- Mobil Geniş (≤767px) ---- */
@media (max-width: 767px) {
    /* Genel */
    .section-padding { padding: 60px 0; }
    .section-padding-sm { padding: 40px 0; }
    .section-title { margin-bottom: 36px; }
    .section-title h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }

    /* Top bar */
    .top-bar .d-none-sm { display: none !important; }
    .top-bar { font-size: .75rem; }

    /* Hero */
    .hero { padding: 50px 0 60px; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); margin-bottom: 14px; }
    .hero p { font-size: 1rem; margin-bottom: 24px; }
    .hero-badge { font-size: .72rem; padding: 5px 14px; margin-bottom: 16px; }
    .hero-stats { flex-wrap: wrap; gap: 15px; margin-top: 30px; padding-top: 24px; }
    .hero-stat .num { font-size: 1.6rem; }
    .hero-image { margin-top: 32px; }
    .hero-image img { max-height: 280px; }
    .hero-image-badge { left: 8px; bottom: 8px; padding: 10px 14px; }
    .hero-image-badge .info .num { font-size: 1.1rem; }
    .btn-gold, .btn-primary-c { padding: 12px 28px; font-size: .9rem; }

    /* Services */
    .service-card { padding: 26px 20px; }
    .service-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 16px; }

    /* Why */
    .why-card { padding: 24px 18px; }
    .why-card .icon { width: 58px; height: 58px; font-size: 1.4rem; }

    /* Blog */
    .blog-card-img { height: 180px; }
    .blog-card-body { padding: 18px; }

    /* Contact */
    .contact-info-card { padding: 26px 20px; }
    .contact-form-card { padding: 26px 20px; }

    /* Footer */
    .site-footer { padding: 50px 0 0; }
    .footer-brand img { height: 42px; margin-bottom: 12px; }
    .footer-bottom { margin-top: 36px; padding: 14px 0; }
    .footer-bottom .credit { flex-wrap: wrap; gap: 4px; font-size: .75rem; }

    /* Page hero */
    .page-hero { padding: 40px 0; }
    .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 8px; }
    .breadcrumb-custom { font-size: .78rem; flex-wrap: wrap; }

    /* Pagination */
    .pagination .page-link { padding: 6px 10px; font-size: .82rem; }
}

/* ---- Mobil Dar (≤576px) ---- */
@media (max-width: 576px) {
    /* Genel */
    body { font-size: .9rem; }
    .section-padding { padding: 48px 0; }
    h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
    h2 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }

    /* Container yatay padding küçüt */
    .container { padding-left: 16px; padding-right: 16px; }

    /* Hero tam genişlik butonlar */
    .hero .btn-gold,
    .hero .btn-outline-white,
    .hero .btn-primary-c { width: 100%; justify-content: center; }
    .hero .d-flex.gap-3 { flex-direction: column; gap: 12px !important; }
    .hero h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
    .hero p { font-size: .95rem; }
    .hero-stats { justify-content: space-between; }
    .hero-stat { flex: 1; min-width: 70px; }
    .hero-stat .num { font-size: 1.5rem; }
    .hero-stat .lbl { font-size: .7rem; }
    .hero-image { display: none; } /* küçük ekranda hero görseli gizle */

    /* Servis kartları dar ekranda tek sütun */
    .service-card { padding: 22px 16px; }

    /* About badge */
    .about-image-wrap .experience-badge { right: -4px; bottom: -8px; padding: 14px 18px; }
    .experience-badge .num { font-size: 2rem; }

    /* Contact */
    .contact-info-item { gap: 12px; }
    .contact-info-icon { width: 38px; height: 38px; font-size: .9rem; }
    .contact-info-item .value { font-size: .88rem; }

    /* Footer */
    .footer-social a { width: 34px; height: 34px; font-size: .8rem; }
    .footer-links a { font-size: .83rem; }
    .footer-contact-item .info { font-size: .8rem; }

    /* Cookie banner */
    .cookie-banner .container { padding: 0 16px; }
    .cookie-banner > .container > div { flex-direction: column; gap: 12px; text-align: center; }
    .cookie-banner .btn-cookie { width: 100%; }

    /* WhatsApp */
    .whatsapp-float .wa-icon { width: 48px; height: 48px; font-size: 1.4rem; }

    /* Scroll top */
    .scroll-top { width: 40px; height: 40px; right: 16px; bottom: 80px; font-size: .8rem; }

    /* Breadcrumb */
    .page-hero { padding: 32px 0; }
    .page-hero h1 { font-size: 1.4rem; }

    /* Stats strip */
    .stats-strip { padding: 28px 0; }
    .stats-strip .stat-num { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* Table yatay kaydırma */
    .page-content table { font-size: .78rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- Çok Küçük Telefon (≤400px) ---- */
@media (max-width: 400px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-image-badge { display: none; }
    .why-card .icon { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 14px; }
}

/* ---- AI Chatbot Widget Responsive ---- */
@media (max-width: 576px) {
    #aiChatWidget { right: 12px; bottom: 76px; }
    #aiChatBox {
        width: calc(100vw - 24px) !important;
        right: calc(-1 * (100vw - 24px - 52px)) !important;
        bottom: 62px !important;
        max-height: calc(100vh - 160px);
        overflow: hidden;
    }
    #aiChatMessages { height: 220px; }
}
@media (max-width: 360px) {
    #aiChatBox { width: calc(100vw - 16px) !important; }
}

/* ---- Koyu arka planlı kartlarda metin rengi ---- */
.card[style*="background:var(--primary)"] h1,
.card[style*="background:var(--primary)"] h2,
.card[style*="background:var(--primary)"] h3,
.card[style*="background:var(--primary)"] h4,
.card[style*="background:var(--primary)"] h5,
.card[style*="background:var(--primary)"] h6,
.card[style*="background:var(--primary)"] p { color: #fff; }

/* ---- Print ---- */
@media print {
    .site-header, .top-bar, .site-footer, .cookie-banner,
    .whatsapp-float, .scroll-top, #aiChatWidget { display: none !important; }
    .section-padding { padding: 20px 0; }
    a[href]::after { content: " (" attr(href) ")"; font-size: .75rem; color: #555; }
}
