/* =============================================
   ÖZDEK HUKUK BÜROSU - Ana Stil Dosyası
   Renk Paleti:
   - Slate/Koyu Mavi: #2D3A4F
   - Altın:           #C9A84C
   - Açık Altın:      #E8C96A
   - Arka Plan:       #F8F6F1
   - Metin:           #2C2C2C
   - Beyaz:           #FFFFFF
============================================= */

:root {
    --slate:       #2D3A4F;
    --slate-dark:  #1E2838;
    --slate-light: #3D4E67;
    --gold:        #C9A84C;
    --gold-light:  #E8C96A;
    --gold-dark:   #A88A35;
    --bg:          #F8F6F1;
    --bg-section:  #F0EDE6;
    --text:        #2C2C2C;
    --text-light:  #666666;
    --white:       #FFFFFF;
    --border:      #E0DAD0;
    --shadow:      0 4px 24px rgba(45,58,79,0.10);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.20);
    --radius:      6px;
    --radius-lg:   12px;
    --transition:  all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--slate-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--slate-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar-left { display: flex; gap: 20px; }
.topbar i { color: var(--gold); }

/* ---- NAVBAR ---- */
.navbar {
    background: var(--slate);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.navbar.scrolled { background: var(--slate-dark); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 88px; }

.navbar-brand { display: flex; align-items: center; }
.logo-img { height: 72px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.88);
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.06);
}
.nav-menu > li > a.active { color: var(--gold-light); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--slate);
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--gold); padding-left: 24px; background: var(--bg); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.btn-gold {
    background: var(--gold);
    color: var(--slate-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-slate {
    background: var(--slate);
    color: var(--white);
    border-color: var(--slate);
}
.btn-slate:hover {
    background: var(--slate-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--slate-dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80&auto=format');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(45,58,79,0.95) 0%, rgba(30,40,56,0.85) 60%, rgba(201,168,76,0.08) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: heroFadeIn 1s ease forwards;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 0;
    left: 0;
    z-index: 2;
}
.hero-stats .container { display: flex; justify-content: flex-end; }
.stats-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    gap: 40px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- SERVICES SECTION ---- */
.services-section { padding: 100px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--slate), var(--slate-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.service-icon i { font-size: 1.5rem; color: var(--white); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ---- WHY US ---- */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
}
.why-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.07);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image-wrap { position: relative; }
.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-image img { width: 100%; height: 500px; object-fit: cover; }
.why-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--slate-dark);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.why-badge .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.why-badge .txt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.why-content .section-header { text-align: left; }
.why-content .section-header h2 { color: var(--white); }
.why-content .section-header p { color: rgba(255,255,255,0.65); }
.why-content .section-tag { color: var(--gold-light); }
.why-content .gold-divider { margin-left: 0; }
.why-features { display: grid; gap: 20px; margin-top: 36px; }
.why-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.why-feature-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-feature-icon i { color: var(--gold); font-size: 1.1rem; }
.why-feature-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.why-feature-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---- PRACTICE AREAS (Detail) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--slate-dark), var(--slate));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 12px; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* ---- LAWYERS ---- */
.lawyers-section { padding: 100px 0; background: var(--bg); }
.lawyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lawyer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.lawyer-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(45,58,79,0.15); }
.lawyer-photo { position: relative; overflow: hidden; height: 280px; }
.lawyer-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lawyer-card:hover .lawyer-photo img { transform: scale(1.05); }
.lawyer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,58,79,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.lawyer-card:hover .lawyer-overlay { opacity: 1; }
.lawyer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    margin-right: 8px;
}
.lawyer-social a:hover { background: var(--gold); border-color: var(--gold); }
.lawyer-info { padding: 24px; }
.lawyer-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.lawyer-title { color: var(--gold-dark); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; }
.lawyer-specialties { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.lawyer-tag {
    display: inline-block;
    background: var(--bg);
    color: var(--slate);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* ---- BLOG ---- */
.blog-section { padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-image { overflow: hidden; height: 220px; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--text-light); }
.blog-category {
    background: var(--gold);
    color: var(--slate-dark);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.blog-read-more:hover { gap: 10px; color: var(--gold); }

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--slate-dark); margin-bottom: 14px; position: relative; }
.cta-section p { color: rgba(30,40,56,0.75); margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-section .btn-slate { position: relative; }

/* ---- CONTACT ---- */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--slate-dark); font-weight: 700; }
.contact-item a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.92rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 80px 0; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.value-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 3px solid var(--gold);
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.value-item p { font-size: 0.88rem; color: var(--text-light); }

/* ---- BLOG SINGLE ---- */
.blog-single { padding: 60px 0 100px; }
.blog-single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-content h1 { margin-bottom: 20px; }
.blog-content-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.blog-content img { border-radius: var(--radius-lg); margin: 24px 0; }
.blog-content h2 { margin: 32px 0 12px; }
.blog-content h3 { margin: 24px 0 8px; }
.blog-content p { margin-bottom: 16px; color: var(--text); }
.blog-content ul, .blog-content ol { margin: 16px 0 16px 24px; }
.blog-content li { margin-bottom: 8px; }

/* Sidebar */
.sidebar-widget { background: var(--bg); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 28px; }
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); color: var(--slate-dark); }
.recent-post { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.recent-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.recent-post-img { width: 70px; height: 70px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.recent-post-title { font-size: 0.88rem; font-weight: 700; line-height: 1.4; color: var(--slate-dark); }
.recent-post-title:hover { color: var(--gold-dark); }
.recent-post-date { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* ---- FOOTER ---- */
.footer { background: var(--slate-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 72px; width: auto; margin-bottom: 18px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--slate-dark); }
.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links i { font-size: 0.7rem; color: var(--gold); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; font-size: 0.9rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p + p { margin-top: 4px; }

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--slate-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ---- UTILITIES ---- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.section-pad { padding: 100px 0; }
.bg-light { background: var(--bg); }
.bg-slate { background: var(--slate); }

/* ---- ADMIN NOTICE ---- */
.no-items-notice {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.no-items-notice i { font-size: 3rem; color: var(--border); margin-bottom: 16px; }

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate);
    transition: var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); border-color: var(--gold); color: var(--slate-dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .lawyers-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-grid { gap: 40px; }
    .blog-single-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 88px; left: 0; right: 0;
        background: var(--slate-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-menu.open { max-height: 80vh; overflow-y: auto; }
    .nav-menu > li > a { padding: 14px 24px; border-radius: 0; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: none;
        background: rgba(0,0,0,0.2);
        border-radius: 0;
    }
    .dropdown-menu li a { padding: 10px 36px; color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.05); }
    .hero { min-height: 75vh; }
    .hero-stats { display: none; }
    .stats-card { flex-wrap: wrap; gap: 20px; }
    .services-grid, .lawyers-grid, .blog-grid { grid-template-columns: 1fr; }
    .why-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
    .why-image-wrap { order: -1; }
    .why-badge { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn { justify-content: center; }
}
