/* =====================================================
   Yiğit Hukuk ve Danışmanlık Bürosu - Ana Stil
   Colors: #152768 (primary), #333333 (secondary)
   ===================================================== */

/* ----------- Google Fonts ----------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------- CSS Variables ----------- */
:root {
    --primary: #152768;
    --primary-dark: #0d1b4a;
    --primary-light: #1e3a8a;
    --secondary: #333333;
    --accent: #c8a96e;
    --accent-light: #e2c99f;
    --white: #ffffff;
    --light: #f8f9fc;
    --light-gray: #e8ecf4;
    --medium-gray: #6b7280;
    --dark: #1a1a1a;
    --success: #10b981;
    --danger: #ef4444;
    --shadow: 0 4px 24px rgba(21, 39, 104, 0.12);
    --shadow-lg: 0 12px 48px rgba(21, 39, 104, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ----------- Utility ----------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-py {
    padding: 90px 0;
}

.section-py-sm {
    padding: 60px 0;
}

.badge {
    display: inline-block;
    background: rgba(200, 169, 110, 0.15);
    color: var(--accent);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--medium-gray);
    max-width: 600px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ----------- Buttons ----------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 39, 104, 0.35);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: #b8975a;
    border-color: #b8975a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* =====================================================
   HEADER & NAV
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-top-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-top-info a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.header-top-info a:hover {
    color: var(--accent-light);
}

.header-top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-top-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.header-top-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.header-main {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 39, 104, 0.1);
    box-shadow: 0 2px 20px rgba(21, 39, 104, 0.08);
    padding: 12px 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo img {
    height: 56px;
    width: auto;
}

/* ----------- Navigation ----------- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: rgba(21, 39, 104, 0.06);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

/* "Avukata Sor" Özel Buton */
.nav-avukata-sor {
    background: linear-gradient(135deg, var(--accent) 0%, #b8975a 100%) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4) !important;
    animation: pulse-gold 2.5s ease-in-out infinite;
}

.nav-avukata-sor::after {
    display: none !important;
}

.nav-avukata-sor:hover {
    background: linear-gradient(135deg, #b8975a 0%, #a07840 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.5) !important;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(200, 169, 110, 0.65);
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header scroll state */
body.scrolled .header-top {
    display: none;
}

body.scrolled .header-main {
    box-shadow: 0 4px 24px rgba(21, 39, 104, 0.15);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1b4a 0%, #152768 50%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><circle cx="200" cy="150" r="300" fill="rgba(200,169,110,0.04)"/><circle cx="1300" cy="600" r="400" fill="rgba(200,169,110,0.03)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.02)"/></svg>') center/cover;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 0 0 4px 4px;
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, #b8975a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--white);
}

.hero-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 28px;
}

.hero-card-form .form-group {
    margin-bottom: 14px;
}

.hero-card-form input,
.hero-card-form select,
.hero-card-form textarea {
    width: 100%;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.hero-card-form input::placeholder,
.hero-card-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-card-form input:focus,
.hero-card-form select:focus,
.hero-card-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.hero-card-form select option {
    color: var(--dark);
    background: var(--white);
}

.hero-card-form textarea {
    resize: none;
    min-height: 100px;
}

/* =====================================================
   FEATURES / WHY US
   ===================================================== */
.features-section {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(21, 39, 104, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(21, 39, 104, 0.1), rgba(21, 39, 104, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   PRACTICE AREAS
   ===================================================== */
.areas-section {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.area-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.area-card::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
    font-size: 14px;
}

.area-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.area-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.area-card:hover .area-icon,
.area-card:hover h4,
.area-card:hover p {
    color: var(--white);
}

.area-card:hover .area-icon {
    background: rgba(255, 255, 255, 0.15);
}

.area-icon {
    width: 52px;
    height: 52px;
    background: rgba(21, 39, 104, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.area-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.area-card p {
    font-size: 13.5px;
    color: var(--medium-gray);
    line-height: 1.6;
    transition: var(--transition);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f9 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
}

.about-img-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--accent);
    display: block;
}

.about-img-placeholder p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.about-badge-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}

.about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-text {
    font-size: 12.5px;
    color: var(--medium-gray);
    margin-top: 4px;
    font-weight: 500;
}

.about-content .badge {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content>p {
    color: var(--medium-gray);
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.85;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 12px rgba(21, 39, 104, 0.06);
}

.about-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(21, 39, 104, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.about-value-text strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 2px;
}

.about-value-text span {
    font-size: 13.5px;
    color: var(--medium-gray);
}

/* =====================================================
   ARTICLES SECTION
   ===================================================== */
.articles-section {
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.article-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.article-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 48px;
}

.article-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-body {
    padding: 28px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 14px;
}

.article-meta i {
    color: var(--accent);
}

.article-title {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover .article-title {
    color: var(--accent);
}

.article-desc {
    font-size: 14px;
    color: var(--medium-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 1.65;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.article-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(200, 169, 110, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-text {
    color: var(--white);
}

.cta-text h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(21, 39, 104, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--medium-gray);
    line-height: 1.75;
    border-top: 1px solid var(--light-gray);
    padding-top: 16px;
}

.faq-side {
    position: sticky;
    top: 120px;
}

.faq-contact-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
}

.faq-contact-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.faq-contact-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.faq-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.faq-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-light);
    flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand {}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--accent);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   PAGE HERO (Inner Pages)
   ===================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb i {
    font-size: 11px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 60px;
}

.contact-info-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--white);
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-info-box>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-list-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-light);
}

.contact-list-text strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-list-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.contact-form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-box>p {
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--secondary);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 39, 104, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* =====================================================
   ASK A LAWYER PAGE
   ===================================================== */
.ask-hero {
    background: linear-gradient(135deg, var(--accent) 0%, #b8975a 50%, #a07840 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ask-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.ask-hero-content {
    position: relative;
    z-index: 1;
}

.ask-hero h1 {
    color: var(--white);
}

.ask-hero p {
    color: rgba(255, 255, 255, 0.85);
}

.ask-form-section {
    background: var(--light);
}

.ask-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
    position: relative;
    top: -40px;
}

.ask-notice {
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #8B6914;
}

.ask-notice i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

/* =====================================================
   ARTICLES LIST PAGE
   ===================================================== */
.articles-listing {
    background: var(--light);
}

.articles-listing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    padding-top: 60px;
}

.articles-main-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-list-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.article-list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-list-thumb {
    width: 220px;
    min-width: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow: hidden;
    position: relative;
}

.article-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-list-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 40px;
    min-height: 160px;
}

.article-list-body {
    padding: 24px 28px;
    flex: 1;
}

/* Sidebar */
.articles-sidebar {}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =====================================================
   SINGLE ARTICLE PAGE
   ===================================================== */
.article-single {
    padding: 60px 0 90px;
}

.article-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.article-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.article-content h2,
.article-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--secondary);
    line-height: 1.85;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px 24px;
}

.article-content li {
    margin-bottom: 8px;
    color: var(--secondary);
}

.article-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    background: rgba(200, 169, 110, 0.08);
    padding: 18px 24px;
    margin: 24px 0;
    border-radius: var(--radius);
    font-style: italic;
    color: var(--secondary);
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #7f1d1d;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-info {
    background: rgba(21, 39, 104, 0.08);
    color: var(--primary);
    border: 1px solid rgba(21, 39, 104, 0.2);
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--light-gray);
    color: var(--secondary);
    transition: var(--transition);
}

.pagination a:hover,
.pagination .active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .articles-listing-grid {
        grid-template-columns: 1fr;
    }

    .article-single-grid {
        grid-template-columns: 1fr;
    }

    .articles-sidebar {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image-wrapper {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .ask-form-wrapper {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        top: 72px;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 8px;
    }

    .nav-avukata-sor {
        text-align: center;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .section-py {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .article-list-card {
        flex-direction: column;
    }

    .article-list-thumb {
        width: 100%;
        min-width: unset;
        min-height: 180px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ask-form-wrapper {
        padding: 28px 20px;
        top: -20px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    .contact-info-box {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
}