/* ==========================================
   GLOBAL STYLES - Av. Ömer Faruk Aydın Hukuk Bürosu
   ========================================== */
:root {
    --primary: #1a2332;
    --primary-light: #243447;
    --accent: #c9a84c;
    --accent-light: #e0c36a;
    --accent-dark: #a88a35;
    --bg-dark: #0f1923;
    --bg-card: rgba(26, 35, 50, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text: #e8e6e3;
    --text-muted: #8a95a5;
    --text-dark: #1a2332;
    --white: #ffffff;
    --border: rgba(201, 168, 76, 0.15);
    --border-light: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-accent: 0 4px 20px rgba(201, 168, 76, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(15, 25, 35, 0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    font-size: 28px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 12px;
    box-shadow: var(--shadow-accent);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.logo-subtitle { font-size: 0.7rem; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 8px; }
.nav-link {
    padding: 8px 18px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    border-radius: var(--radius-full); transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--bg-glass); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
    padding: 10px 24px; background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary) !important; font-weight: 600; font-size: 0.88rem;
    border-radius: var(--radius-full); box-shadow: var(--shadow-accent); transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
    position: relative; width: 100%; height: 100vh; min-height: 650px;
    overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: kenBurns 20s ease infinite alternate;
}
.hero-slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,0.92) 0%, rgba(26,35,50,0.82) 50%, rgba(15,25,35,0.9) 100%);
}
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 1200px; margin: 0 auto; padding: 120px 24px 140px;
}
.hero-slide .hero-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px;
    background: rgba(201,168,76,0.12); border: 1px solid var(--border); border-radius: var(--radius-full);
    font-size: 0.85rem; color: var(--accent); margin-bottom: 28px; width: fit-content;
    backdrop-filter: blur(10px); opacity: 0; transform: translateY(20px);
}
.hero-slide.active .hero-badge { animation: slideUp 0.7s ease 0.2s forwards; }
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero-slide .hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
    line-height: 1.15; color: var(--white); margin-bottom: 24px;
    opacity: 0; transform: translateY(30px);
}
.hero-slide.active .hero-title { animation: slideUp 0.7s ease 0.35s forwards; }
.hero-title-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-slide .hero-desc {
    font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin-bottom: 36px;
    opacity: 0; transform: translateY(30px);
}
.hero-slide.active .hero-desc { animation: slideUp 0.7s ease 0.5s forwards; }
.hero-slide .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(30px);
}
.hero-slide.active .hero-actions { animation: slideUp 0.7s ease 0.65s forwards; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* Slider Nav Arrows */
.hero-slider-nav { position: absolute; top: 50%; left: 0; right: 0; z-index: 10; transform: translateY(-50%); pointer-events: none; }
.hero-nav-btn {
    position: absolute; width: 52px; height: 52px; border-radius: 50%;
    background: rgba(15, 25, 35, 0.6); backdrop-filter: blur(10px);
    border: 1px solid var(--border); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); pointer-events: auto;
}
.hero-nav-btn:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Slider Dots */
.hero-dots {
    position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 10;
    display: flex; gap: 12px; align-items: center;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
    background: transparent; cursor: pointer; transition: var(--transition);
}
.hero-dot:hover { border-color: var(--accent); }
.hero-dot.active { border-color: var(--accent); background: var(--accent); width: 36px; border-radius: 6px; }

/* Progress Bar */
.hero-progress {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 3px; background: rgba(255,255,255,0.15);
    border-radius: 2px; z-index: 10; overflow: hidden;
}
.hero-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; width: 0; transition: width 0.3s linear; }

/* Stats Bar */
.hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    background: rgba(15, 25, 35, 0.8); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 48px; padding: 20px 0; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat-plus { font-size: 1.5rem; color: var(--accent); font-weight: 600; }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border-light); }

/* Slide counter */
.hero-slide-counter {
    position: absolute; top: 100px; right: 40px; z-index: 10;
    font-family: var(--font-heading); font-size: 1rem; color: rgba(255,255,255,0.3); letter-spacing: 2px;
}
.hero-slide-counter .current { color: var(--accent); font-size: 1.8rem; font-weight: 700; }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary);
    font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent); transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
.btn-primary.light { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: transparent; color: var(--text); font-weight: 500; font-size: 0.95rem;
    border-radius: var(--radius-full); border: 1px solid var(--border-light); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 168, 76, 0.05); }

/* ==========================================
   SECTIONS (GENERAL)
   ========================================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block; padding: 6px 18px; background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border); border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ==========================================
   SERVICES - with images
   ========================================== */
.services { padding: 100px 0; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    position: relative; padding: 0; background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius); backdrop-filter: blur(10px); transition: var(--transition); overflow: hidden;
}
.service-card-image {
    width: 100%; height: 180px; overflow: hidden; position: relative;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,25,35,0.8) 100%);
}
.service-card-body { padding: 28px 24px; }
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: var(--transition); z-index: 2;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), var(--bg-card)); }
.featured-badge {
    position: absolute; top: 16px; right: 16px; padding: 4px 12px; background: var(--accent);
    color: var(--primary); font-size: 0.72rem; font-weight: 700; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 1px; z-index: 3;
}
.service-icon-wrap { margin-bottom: 20px; }
.service-icon {
    font-size: 2.5rem; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.1); border: 1px solid var(--border); border-radius: 14px;
}
.service-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--accent); }
.service-link:hover { gap: 10px; }

/* ==========================================
   WHY US - with image
   ========================================== */
.why-us { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.03), transparent); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-items { margin: 32px 0; }
.why-item { display: flex; gap: 16px; margin-bottom: 24px; padding: 16px; border-radius: var(--radius-sm); transition: var(--transition); }
.why-item:hover { background: var(--bg-glass); }
.why-check {
    width: 32px; height: 32px; min-width: 32px; display: flex; align-items: center; justify-content: center;
    background: rgba(201, 168, 76, 0.15); color: var(--accent); border-radius: 8px; font-weight: 700; font-size: 0.85rem;
}
.why-item strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.why-item p { color: var(--text-muted); font-size: 0.85rem; }

/* Why Visual Image */
.why-visual-image {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.why-visual-image img { width: 100%; height: 400px; object-fit: cover; }
.why-visual-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,25,35,0.5) 100%);
}

.award-cards { display: flex; flex-direction: column; gap: 16px; }
.award-card {
    display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--bg-card);
    border: 1px solid var(--border-light); border-radius: var(--radius);
    backdrop-filter: blur(10px); transition: var(--transition);
}
.award-card:hover { border-color: var(--border); transform: translateX(6px); }
.award-icon { font-size: 2.5rem; }
.award-info strong { color: var(--white); font-size: 1rem; display: block; margin-bottom: 2px; }
.award-info span { color: var(--text-muted); font-size: 0.85rem; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { padding: 100px 0; }
.testimonials-slider { position: relative; max-width: 700px; margin: 0 auto; min-height: 280px; }
.testimonial-card {
    position: absolute; top: 0; left: 0; right: 0; padding: 40px; background: var(--bg-card);
    border: 1px solid var(--border-light); border-radius: var(--radius); backdrop-filter: blur(10px);
    opacity: 0; transform: translateX(40px); transition: all 0.5s ease; pointer-events: none;
}
.testimonial-card.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1.05rem; color: var(--text); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary);
    font-weight: 700; font-size: 0.85rem; border-radius: 50%;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 300px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); border: none; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* ==========================================
   BLOG PREVIEW - with images
   ========================================== */
.blog-preview { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.03), transparent); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    padding: 0; background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius); backdrop-filter: blur(10px); transition: var(--transition); overflow: hidden;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow); }
.blog-card-image { width: 100%; height: 200px; overflow: hidden; position: relative; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,25,35,0.7) 100%);
}
.blog-card-body { padding: 24px; }
.blog-cat {
    display: inline-block; padding: 4px 14px; background: rgba(201, 168, 76, 0.12); color: var(--accent);
    font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 1px;
}
.blog-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.blog-card > p, .blog-card-body > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.blog-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border-light);
}
.blog-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.blog-read:hover { color: var(--accent-light); }
.blog-cta { text-align: center; margin-top: 40px; }

/* ==========================================
   CTA BANNER - with background image
   ========================================== */
.cta-banner { padding: 80px 0; }
.cta-content {
    text-align: center; padding: 80px 40px; border-radius: var(--radius);
    position: relative; overflow: hidden;
    background: url('../images/library.png') center/cover no-repeat;
}
.cta-content::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.92), rgba(168,138,53,0.88));
}
.cta-content h2 {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary); margin-bottom: 12px; position: relative;
}
.cta-content p { color: rgba(26, 35, 50, 0.7); font-size: 1.05rem; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.btn-phone {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
    background: rgba(26, 35, 50, 0.15); color: var(--primary); font-weight: 600; font-size: 0.95rem;
    border-radius: var(--radius-full); border: 1px solid rgba(26, 35, 50, 0.2); transition: var(--transition);
}
.btn-phone:hover { background: rgba(26, 35, 50, 0.25); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { padding: 80px 0 0; background: var(--primary); border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-logo {
    display: flex; align-items: center; gap: 10px; font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.footer-logo span:first-child { font-size: 1.5rem; }
.footer-brand > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-glass); border: 1px solid var(--border-light); border-radius: 10px;
    font-size: 0.85rem; font-weight: 700; color: var(--text-muted); transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--border-light); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ==========================================
   PAGE HEADER - with image
   ========================================== */
.page-header {
    padding: 140px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header-bg {
    position: absolute; inset: 0;
    background: url('../images/gavel.png') center/cover no-repeat;
}
.page-header-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,25,35,0.9) 0%, rgba(26,35,50,0.85) 50%, var(--bg-dark) 100%);
}
.page-header:not(:has(.page-header-bg)) {
    background: linear-gradient(180deg, var(--primary) 0%, var(--bg-dark) 100%);
}
.page-header:not(:has(.page-header-bg))::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08), transparent 60%);
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-page-content { padding: 60px 0 100px; }
.blog-filters { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.blog-filter-btn {
    padding: 8px 20px; font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.blog-search { margin-left: auto; position: relative; }
.blog-search input {
    padding: 10px 20px 10px 42px; background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-full); color: var(--text); font-size: 0.88rem;
    font-family: var(--font-body); width: 260px; transition: var(--transition);
}
.blog-search input:focus { outline: none; border-color: var(--accent); }
.blog-search::before { content: '🔍'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 0.85rem; }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Blog Detail */
.blog-detail-content { padding: 60px 0 100px; }
.blog-detail-wrapper { max-width: 800px; margin: 0 auto; }
.blog-detail-header { margin-bottom: 32px; }
.blog-detail-header .blog-cat { margin-bottom: 16px; }
.blog-detail-header h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); line-height: 1.3; margin-bottom: 20px; }
.blog-detail-meta { display: flex; align-items: center; gap: 24px; padding: 16px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); font-size: 0.88rem; color: var(--text-muted); }
.blog-detail-body { padding: 40px 0; }
.blog-detail-body h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin: 32px 0 16px; }
.blog-detail-body p { color: var(--text); line-height: 1.9; margin-bottom: 16px; font-size: 1.02rem; }
.blog-share { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid var(--border-light); }
.blog-share span { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.share-btn { padding: 8px 16px; background: var(--bg-glass); border: 1px solid var(--border-light); border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.82rem; cursor: pointer; transition: var(--transition); }
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.related-posts { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-light); }
.related-posts h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-intro { padding: 60px 0 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.about-photo {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(transparent, rgba(15, 25, 35, 0.5));
}
.about-bio h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); margin-bottom: 8px; }
.about-bio .about-title-role { color: var(--accent); font-size: 0.95rem; font-weight: 500; margin-bottom: 24px; }
.about-bio p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }

/* Timeline */
.timeline-section { padding: 80px 0; }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot { width: 16px; height: 16px; background: var(--accent); border-radius: 50%; border: 3px solid var(--bg-dark); position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; }
.timeline-content { width: 45%; padding: 20px 24px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-sm); }
.timeline-year { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.timeline-content h3 { font-family: var(--font-heading); color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.timeline-content p { color: var(--text-muted); font-size: 0.85rem; }

/* Team */
.team-section { padding: 80px 0; background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.03), transparent); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 20px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); border-color: var(--border); }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    font-size: 1.8rem; color: var(--primary); font-weight: 700; font-family: var(--font-heading);
}
.team-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.team-card .team-role { color: var(--accent); font-size: 0.82rem; font-weight: 500; margin-bottom: 12px; }
.team-card .team-bio { color: var(--text-muted); font-size: 0.85rem; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding: 60px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.contact-info-card { padding: 24px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-sm); transition: var(--transition); }
.contact-info-card:hover { border-color: var(--border); }
.contact-info-card .info-icon {
    font-size: 1.8rem; margin-bottom: 12px; display: block;
    /* Force emoji to appear golden/neutral via hue-rotate won't work, use wrapper */
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.12); border: 1px solid var(--border); border-radius: 12px;
    font-size: 1.4rem;
}
.contact-info-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 6px; font-weight: 600; }
.contact-info-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.contact-info-card p a { color: var(--accent); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); height: 250px; }
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.7) brightness(0.7); }
.contact-form { padding: 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); backdrop-filter: blur(10px); }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; background: var(--bg-glass); border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem;
    font-family: var(--font-body); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; margin-top: 8px; }

/* FAQ Accordion */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: var(--bg-card); color: var(--white); font-size: 0.95rem; font-weight: 500; text-align: left; cursor: pointer; transition: var(--transition); }
.faq-question:hover { background: var(--primary-light); }
.faq-arrow { font-size: 0.8rem; color: var(--accent); transition: var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; background: var(--bg-card); }

/* Services Detail Page */
.services-detail-grid { display: grid; gap: 48px; padding: 60px 0 100px; }
.service-detail-card { display: grid; grid-template-columns: auto 1fr; gap: 32px; padding: 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); transition: var(--transition); }
.service-detail-card:hover { border-color: var(--border); }
.service-detail-icon { font-size: 3rem; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--bg-glass); border: 1px solid var(--border-light); border-radius: var(--radius); }
.service-detail-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.service-detail-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast { position: fixed; bottom: 24px; right: 24px; padding: 16px 24px; background: var(--primary-light); border: 1px solid var(--accent); border-radius: var(--radius-sm); color: var(--white); font-size: 0.9rem; z-index: 9999; opacity: 0; transform: translateY(20px); transition: var(--transition); box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: #4ade80; }
.toast.error { border-color: #f87171; }

/* ==========================================
   PARALLAX IMAGE SECTIONS
   ========================================== */
.parallax-divider {
    width: 100%; height: 300px; position: relative; overflow: hidden;
    margin: 0;
}
.parallax-divider img {
    width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%;
}
.parallax-divider::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-nav-btn { width: 40px; height: 40px; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 300px; margin: 0 auto; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.mobile-open {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(15, 25, 35, 0.98); backdrop-filter: blur(20px); padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    .nav-cta.mobile-open { display: inline-flex; position: absolute; top: calc(100% + 160px); left: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-list { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .hero-slider-nav { display: none; }
    .hero-slide-content { padding: 100px 20px 140px; }
    .hero-slide .hero-title { font-size: 2rem; }
    .hero-dots { bottom: 90px; }
    .hero-progress { bottom: 72px; width: 140px; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-progress { bottom: 72px; width: 140px; }
    .related-grid { grid-template-columns: 1fr; }
    .blog-filters { flex-direction: column; align-items: flex-start; }
    .blog-search { margin-left: 0; width: 100%; }
    .blog-search input { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .parallax-divider { height: 180px; }
    .service-card-image { height: 140px; }
    .blog-card-image { height: 160px; }
}
