:root {
    --primary-dark: #070e17;
    --primary-light: #121c2d;
    --secondary-gold: #c9a050;
    --secondary-gold-light: #dfb96f;
    --secondary-gold-fade: rgba(201, 160, 80, 0.15);
    
    --bg-color: #f7f8fa;
    --surface-color: #ffffff;
    
    --text-main: #2b323c;
    --text-muted: #646f7d;
    --text-light: #fcfcfc;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-gold);
    margin-bottom: 0.8rem;
    position: relative;
}

.section-tag.center {
    display: block;
    margin: 0 auto 0.8rem;
    width: fit-content;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-gold);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}
.divider.center { margin: 1rem auto 2rem; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--secondary-gold);
    color: var(--white, #fff);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background-color: var(--primary-dark);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 160, 80, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}

/* Navbar: Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 14, 23, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(7, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span, .logo-footer span {
    color: var(--secondary-gold);
    font-weight: 400;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a:not(.nav-btn) {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-gold);
    transition: var(--transition-normal);
}

.nav-links a:not(.nav-btn):hover {
    color: #fff;
}

.nav-links a:not(.nav-btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: #fff;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Adalet Terazisi / Yargı - Kişi içermeyen şık bir görsel */
    background: url('https://images.unsplash.com/photo-1585829365295-ab7cd400c167?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    z-index: -2;
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 14, 23, 0.92) 0%, rgba(7, 14, 23, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    margin-top: 5rem;
}

.hero h1 {
    color: #fff;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .highlight {
    color: var(--secondary-gold);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-down a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-down a:hover { opacity: 1; }
.scroll-down i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections General */
.section {
    padding: 8rem 0;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.image-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--surface-color);
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 4px solid var(--secondary-gold);
    z-index: 2;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0.5rem;
    max-width: 120px;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-bullet-points {
    list-style: none;
    margin-top: 2rem;
}

.about-bullet-points li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.about-bullet-points i {
    color: var(--secondary-gold);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Services Section */
.services {
    background-color: var(--surface-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-color);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background-color: var(--secondary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    width: 60px; height: 60px;
    background: var(--secondary-gold-fade);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-fast);
}

.card-link i { transition: transform 0.3s ease; }
.card-link:hover { color: var(--secondary-gold); }
.card-link:hover i { transform: translateX(5px); }

/* Articles Section */
.articles { background-color: var(--bg-color); }

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.articles-nav { display: flex; gap: 1rem; }

.nav-btn-round {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    color: var(--primary-dark);
}

.nav-btn-round:hover {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: #fff;
}

.articles-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    background: var(--surface-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition-normal);
}

.article-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.article-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.article-category {
    position: absolute;
    bottom: 0; left: 0;
    background: var(--secondary-gold);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content { padding: 2rem; }

.article-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.article-title { margin-bottom: 1rem; font-size: 1.3rem; }
.article-title a { color: var(--primary-dark); text-decoration: none; transition: var(--transition-fast); }
.article-title a:hover { color: var(--secondary-gold); }

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.read-more i { transition: transform 0.3s ease; }
.read-more:hover { color: var(--secondary-gold); }
.read-more:hover i { transform: translateX(5px); }

/* Contact */
.contact { background-color: var(--surface-color); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-item-lux {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item-lux .icon-box {
    width: 55px; height: 55px;
    min-width: 55px;
    background: var(--surface-color);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-gold);
    margin-right: 1.5rem;
}

.info-item-lux h4 { margin-bottom: 0.2rem; font-family: var(--font-body); font-size: 1rem; }
.info-item-lux p { color: var(--text-muted); font-size: 0.95rem; }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-links a {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-color);
    color: var(--primary-dark);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-gold);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--surface-color);
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.input-group-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

@media (max-width: 768px) {
    .input-group-row { grid-template-columns: 1fr; gap: 0; }
}

.input-field {
    position: relative;
    margin-bottom: 1.8rem;
}

.input-field input, .input-field textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.input-field label {
    position: absolute;
    top: 1rem; left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-normal);
}

.input-field input:focus, .input-field textarea:focus {
    border-bottom-color: var(--secondary-gold);
}

.input-field input:focus ~ label,
.input-field input:not(:placeholder-shown) ~ label,
.input-field textarea:focus ~ label,
.input-field textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-gold);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 6rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.logo-footer {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 350px;
    line-height: 1.8;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--secondary-gold); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}
.legal-links a:hover { color: var(--secondary-gold); }

/* Animations - Reveal Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
    opacity: 0;
    transition: all 1s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-wrapper, .contact-wrapper, .footer-content {
        grid-template-columns: 1fr;
    }
    .experience-badge { right: 20px; bottom: -20px; }
    .hero h1 { font-size: 3.5rem; }
    .articles-track { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        left: -100%; top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: var(--primary-dark);
        width: 100%; height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
    }
    .nav-links.active { left: 0; visibility: visible; opacity: 1; }
    .nav-links li { margin: 1.5rem 0; }
    .navbar.scrolled { padding: 1.2rem 0; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .hero-buttons a { text-align: center; }
    
    .articles-track { grid-template-columns: 1fr; }
    .contact-form-container { padding: 2rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(37,211,102,0.5);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
