/* ==========================================================================
   EMS Hukuk & Danışmanlık - Premium Stylesheet
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette */
    --color-bg-deep: #070e1c;       /* Ultra deep navy */
    --color-bg-main: #0b1528;       /* Primary dark navy */
    --color-bg-card: #12223c;       /* Secondary lighter navy for cards */
    --color-bg-glass: rgba(11, 21, 40, 0.75);
    
    --color-gold-light: #f5e3a0;    /* Soft glowing gold */
    --color-gold-main: #d4af37;     /* True metallic gold */
    --color-gold-dark: #aa7c11;     /* Rich deep bronze gold */
    --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5e3a0 50%, #aa7c11 100%);
    --color-gold-glow: 0 0 15px rgba(212, 175, 55, 0.35);
    
    --color-text-bright: #f4f6fb;   /* Off-white for readability */
    --color-text-muted: #8e9bb4;    /* Slate blue for descriptions */
    --color-text-dark: #070e1c;
    
    --color-success: #2ec4b6;
    --color-error: #e63946;
    
    /* Typography */
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Layout & Transitions */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
}

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

h1, h2, h3, h4, h5, h6, .logo-title {
    font-family: var(--font-serif);
    color: var(--color-text-bright);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

ul {
    list-style: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-main);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--color-bg-deep);
}

.text-gold {
    color: var(--color-gold-main) !important;
}

.text-gradient-gold {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

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

.mt-15 { margin-top: 15px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-2-equal {
    grid-template-columns: 1fr 1fr;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-gold {
    background: var(--color-gold-gradient);
    color: var(--color-text-dark);
    box-shadow: var(--color-gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f5e3a0 0%, #d4af37 50%, #aa7c11 100%);
}

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

.btn-outline:hover {
    background: var(--color-gold-gradient);
    color: var(--color-text-dark);
    transform: translateY(-3px);
    box-shadow: var(--color-gold-glow);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Shimmer Light Effect */
.shimmer-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    opacity: 0;
}

.shimmer-effect:hover::after {
    animation: shimmer 1.2s ease-in-out infinite;
    opacity: 1;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 140%; }
}

/* --- Section Headers --- */
.section-title-wrapper {
    margin-bottom: 30px;
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.subtitle {
    font-family: var(--font-sans);
    color: var(--color-gold-main);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--color-gold-gradient);
    margin-top: 15px;
    border-radius: 2px;
}

.title-bar.center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* --- Custom Cursor Effect --- */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-gold-main);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transition-timing-function: cubic-bezier(0.1, 0.8, 0.3, 1);
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-gold-main);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* --- Header & Navigation --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    padding: 12px 0;
    background-color: var(--color-bg-glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

#main-logo {
    transition: var(--transition-smooth);
}

#main-logo:hover {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 1000;
    letter-spacing: 2px;
    line-height: 1;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--color-text-bright);
    letter-spacing: 3.5px;
    margin-top: 5px;
    font-weight: 500;
}

/* Nav Links */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    color: var(--color-text-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-main);
}

/* Hamburger button for Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-gold-main);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Open states for mobile menu button */
.mobile-menu-btn.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-deep);
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-content ul {
    margin-bottom: 40px;
}

.mobile-nav-content li {
    margin: 24px 0;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-bright);
    letter-spacing: 1px;
}

.mobile-link:hover {
    color: var(--color-gold-main);
}

.mobile-cta {
    display: inline-flex;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

/* Animated glow background */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                      radial-gradient(circle at 10% 80%, rgba(18, 34, 60, 0.4) 0%, transparent 50%);
    z-index: 1;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-gold-main);
    filter: blur(120px);
    opacity: 0.05;
    z-index: 1;
    animation: pulse 12s infinite alternate ease-in-out;
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    right: 50px;
}

.shape-2 {
    width: 280px;
    height: 280px;
    bottom: -50px;
    left: 10%;
    animation-delay: 4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.03; }
    100% { transform: scale(1.3) translate(50px, 30px); opacity: 0.07; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--color-text-bright);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Floating Hero Widget Card */
.hero-widget {
    display: flex;
    justify-content: flex-end;
}

.widget-card {
    background-color: rgba(18, 34, 60, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.widget-header i {
    font-size: 1.8rem;
    color: var(--color-gold-main);
}

.widget-header h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-bright);
}

.widget-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.widget-stat .stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold-main);
    font-weight: 700;
}

.widget-stat .stat-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.widget-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

.widget-footer p {
    font-size: 0.75rem;
    color: var(--color-text-bright);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.widget-footer i {
    color: var(--color-success);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Widget Logo Alanı (Hero Bölümü) */
.widget-logo-area {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
    border-radius: 10px;
}

.widget-icon-fallback {
    font-size: 2rem;
    color: var(--color-gold-main);
}

/* Scroll Down indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-down-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down-indicator a:hover {
    color: var(--color-gold-main);
}

.bounce {
    animation: bounce 2s infinite;
    margin-top: 8px;
    font-size: 1.1rem;
}

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

/* --- Highlights Section --- */
.highlights-section {
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-main) 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 35px 30px;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--color-gold-glow);
    border-color: rgba(212, 175, 55, 0.35);
}

.highlight-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .icon-box {
    background: var(--color-gold-gradient);
}

.highlight-card .icon-box i {
    font-size: 1.5rem;
    color: var(--color-gold-main);
    transition: var(--transition-smooth);
}

.highlight-card:hover .icon-box i {
    color: var(--color-text-dark);
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- About Us Section --- */
.about-image-wrapper {
    position: relative;
    padding: 14px;           /* Eşit padding → fotoğraf çerçeve içinde ortalanır */
    padding-bottom: 60px;    /* Badge için alt boşluk */
}

.image-border-decoration {
    position: absolute;
    inset: 0;                /* Tüm wrapper'ı kapsar → simetrik çerçeve */
    border: 2px solid rgba(212, 175, 55, 0.55);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background-color: var(--color-bg-card);
}

.about-portrait {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: 45% top;   /* Kişi yatayda ~%45'te, yüzden başlayarak göster */
    transition: var(--transition-smooth);
}

.image-container:hover .about-portrait {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--color-gold-gradient);
    color: var(--color-text-dark);
    padding: 14px 20px;
    border-radius: 6px;
    z-index: 4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-experience-badge .number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
}

.about-experience-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-text-lead {
    font-size: 1.15rem;
    color: var(--color-text-bright);
    line-height: 1.5;
    margin-bottom: 24px;
    font-style: italic;
    border-left: 3px solid var(--color-gold-main);
    padding-left: 20px;
}

.about-text-body {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-points {
    margin: 30px 0;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-weight: 500;
    color: var(--color-text-bright);
}

.point-item i {
    font-size: 1.1rem;
}

.about-signature-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.signature-font {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--color-gold-main);
    display: block;
    font-weight: 600;
}

.signature-box .sub {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* --- Services (Faaliyet Alanları) --- */
.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--color-gold-glow);
    border-color: rgba(212, 175, 55, 0.25);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--color-gold-main);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    flex: 1;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* --- Why Us Section --- */
.why-us-lead {
    font-size: 1.1rem;
    color: var(--color-text-bright);
    margin-bottom: 30px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--color-gold-main);
}

.feature-text h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.9rem;
}

/* Why Us Visual Card */
.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
}

.visual-circle-progress {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(closest-side, var(--color-bg-card) 78%, transparent 80% 100%),
                conic-gradient(var(--color-gold-main) 100%, rgba(255,255,255,0.05) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: var(--color-gold-glow);
}

.circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-bright);
}

.circle-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.visual-details h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
}

.visual-details p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.visual-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visual-list li {
    font-size: 0.85rem;
    color: var(--color-text-bright);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- FAQ Accordion Section --- */
.faq-wrapper {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--color-gold-glow);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

/* Sadece metin span'ı genişlesin */
.faq-question > span:first-child {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-bright);
    transition: var(--transition-fast);
    flex: 1;
    min-width: 0;
}

.faq-question:hover > span:first-child {
    color: var(--color-gold-main);
}

/* İkon: sabit kare boyut, asla büyümez/küçülmez */
.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    max-width: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-main);
    font-size: 0.78rem;
    flex: 0 0 30px;
    transition: var(--transition-smooth);
}

.faq-question:hover .faq-icon {
    border-color: var(--color-gold-main);
    background: rgba(212, 175, 55, 0.1);
}

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

.faq-answer-content {
    padding: 16px 24px 26px 24px;
    font-size: 0.95rem;
    line-height: 1.75;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* JS Active FAQ state */
.faq-item.active {
    border-color: var(--color-gold-main);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-gold-main);
    border-color: var(--color-gold-main);
    color: var(--color-text-dark);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

/* --- Contact & Map Section --- */
.contact-lead {
    font-size: 1.05rem;
    color: var(--color-text-bright);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.3rem;
    color: var(--color-gold-main);
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold-main);
}

.method-text a, .method-text p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-bright);
    margin-top: 4px;
}

.method-text a:hover {
    color: var(--color-gold-main);
    padding-left: 2px;
}

/* Embed Map Container */
.map-container-wrapper {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.map-overlay-content {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(11, 21, 40, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-gold-main);
    border-radius: 4px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-bright);
    z-index: 10;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.contact-form-wrapper p {
    font-size: 0.9rem;
}

.form-row {
    margin-bottom: 20px;
    position: relative;
}

/* Form 2 kolonlu satır (grid class olmadan da çalışır) */
.form-row.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row.grid-2 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-bright);
}

.form-group label .required {
    color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-bright);
    padding: 14px 16px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    width: 100%;
}

/* Select: tarayıcı okunu gizle, özel altın ok ekle */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23d4af37' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 42px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--color-bg-deep);
    color: var(--color-text-bright);
    padding: 10px;
}

/* Textarea sadece dikey yeniden boyutlandırma */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #586580;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-gold-main);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background-color: rgba(7, 14, 28, 0.5);
}

/* Form error states */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--color-error);
}

.error-msg {
    color: var(--color-error);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.form-group.invalid .error-msg {
    display: block;
}

/* KVKK Checkbox */
.kvkk-row {
    margin: 25px 0;
}

.kvkk-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    position: relative;
    user-select: none;
}

.kvkk-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background-color: var(--color-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.kvkk-checkbox-container:hover input ~ .checkmark {
    border-color: var(--color-gold-main);
}

.kvkk-checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-gold-main);
    border-color: var(--color-gold-main);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid var(--color-text-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kvkk-checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.kvkk-text {
    line-height: 1.4;
}

.kvkk-error {
    margin-top: 8px;
    display: none;
}

.kvkk-row.invalid .kvkk-error {
    display: block;
}

/* Success Card Overlay */
.form-feedback-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-card);
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    transition: var(--transition-smooth);
}

.form-feedback-card.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.feedback-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 196, 182, 0.1);
    border: 2px solid var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feedback-icon i {
    font-size: 2.5rem;
    color: var(--color-success);
}

.form-feedback-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.form-feedback-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 400px;
}

/* --- Footer Section --- */
.footer-section {
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-col h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-main);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold-main);
}

.brand-col .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-bright);
}

.social-links a:hover {
    background: var(--color-gold-gradient);
    color: var(--color-text-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    font-size: 0.85rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold-main);
    transform: translateX(4px);
}

.warning-text {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #5c6d8d;
}

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

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-links a:hover {
    color: var(--color-gold-main);
}

.bottom-links .divider {
    color: rgba(255,255,255,0.1);
}

/* --- KVKK Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 14, 28, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-gold-main);
    border-radius: 8px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal-overlay:not(.hidden) .modal-card {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--color-gold-main);
}

.modal-body {
    padding: 24px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 6px;
}

.modal-footer {
    padding: 15px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

/* --- Scroll Entrance Animations --- */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animation Delays */
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets & Desktop (992px to 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .about-portrait {
        height: 420px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .grid-2, .grid-2-equal, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Header */
    .nav-menu, .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 50px;
    }
    
    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-widget {
        justify-content: center;
        margin-top: 30px;
    }
    
    /* About */
    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 500px;
        margin: 0 auto 50px auto;
        width: 90%;
    }
    
    .image-border-decoration {
        display: none;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-signature-area {
        justify-content: center;
        text-align: center;
    }
    
    /* Why Us */
    .why-us-visual {
        margin-top: 40px;
    }
    
    /* Footer */
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Phones (up to 767px) */
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- Lawyer Meta Grid (TBB Regulation Compliance) --- */
.lawyer-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-main);
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    color: var(--color-text-bright);
    font-weight: 500;
}

@media (max-width: 576px) {
    .lawyer-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Body No-Scroll (Mobile Menu & Modal) --- */
body.no-scroll {
    overflow: hidden;
}

/* --- Header Logo (Gerçek Logo Görseli) --- */
.header-logo-img {
    height: 95px;
    width: auto;
    transition: var(--transition-smooth);
    border-radius: 6px;
}

.header-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
}

.logo-fallback-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fallback-wrap svg {
    width: 80px;
    height: 80px;
    transition: var(--transition-smooth);
}

/* --- Footer Logo Görseli --- */
.footer-logo-img {
    height: 110px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 8px;
    display: block;
}

.footer-logo-text {
    flex-direction: column;
    margin-bottom: 16px;
}

/* --- WhatsApp Yüzen Butonu --- */
.whatsapp-fab {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    z-index: 998;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-bg-card);
    color: var(--color-text-bright);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 7px solid var(--color-bg-card);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Yukarı Çık Butonu --- */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    color: var(--color-text-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 997;
    box-shadow: var(--color-gold-glow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .whatsapp-fab {
        bottom: 80px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

    .header-logo-img {
        height: 72px;
    }

    .logo-fallback-wrap svg {
        width: 60px;
        height: 60px;
    }
}

/* ================================================================
   EK GÖRSEL POLİSH — Tutarlılık ve İnce Düzeltmeler
   ================================================================ */

/* Footer logo boyutu tablet için küçültme */
@media (max-width: 991px) {
    .footer-logo-img {
        height: 90px;
        margin: 0 auto 16px auto;
    }

    .footer-col.brand-col {
        text-align: center;
    }
}

/* Footer 4 kolon — tablet ara kırılma noktası */
@media (max-width: 1100px) and (min-width: 992px) {
    .footer-top .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Highlight kartların ikon hover rengi tutarlılığı */
.highlight-card:hover .icon-box i {
    color: var(--color-text-dark);
}

/* About portrait yüksekliği tablet */
@media (max-width: 991px) {
    .about-portrait {
        height: 420px;
        object-position: center top;
    }
}

/* FAQ answer-content üst çizgi boşluğu */
.faq-answer-content {
    border-top-color: rgba(255, 255, 255, 0.06);
}

/* Contact yöntem linkleri transition */
.method-text a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}

/* Footer linklerin satır yüksekliği */
.footer-links a {
    display: inline-block;
    line-height: 1.4;
}

/* Mobile nav CTA ortalama */
.mobile-cta {
    margin: 0 auto;
}

/* Widget card body dikey padding */
.widget-body {
    padding: 8px 0;
}

/* Shimmer efekti btn-block üzerinde düzgün çalışsın */
.btn-block.shimmer-effect::after {
    width: 20%;
}

/* Scroll down indicator link boşluğu */
.scroll-down-indicator a {
    gap: 8px;
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 3px;
    transition: var(--transition-fast);
    line-height: 1;
}

.lang-btn:hover {
    color: var(--color-gold-main);
}

.lang-btn.active {
    color: var(--color-gold-main);
    background: rgba(212, 175, 55, 0.1);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    pointer-events: none;
    user-select: none;
}

/* Mobile language switcher inside the overlay */
.lang-switcher-mobile {
    margin: 24px auto 0 auto;
    justify-content: center;
    gap: 8px;
}

.lang-switcher-mobile .lang-btn {
    font-size: 0.85rem;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.lang-switcher-mobile .lang-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold-main);
    color: var(--color-gold-main);
}

.lang-switcher-mobile .lang-divider {
    display: none;
}

/* Hide desktop lang-switcher on mobile */
@media (max-width: 991px) {
    .lang-switcher:not(.lang-switcher-mobile) {
        display: none;
    }
}

/* ==========================================================================
   i18n Layout Fixes — EN/DE text length compensation
   ========================================================================== */

/* 1. Global: auto-hyphenation for long German compound words */
h1, h2, h3, h4 {
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* 2. Hero badge: longer in EN/DE → allow wrapping */
.badge {
    white-space: normal;
    text-align: center;
}

/* 3. Widget stats: reduce size so longer EN/DE words fit; NO word-break to prevent
      mid-letter splits like "RECHTLIC HE". Stats share equal space via flex:1. */
.widget-stat .stat-num {
    font-size: 1.25rem;
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1.2;
}

.widget-body {
    align-items: flex-start;
    gap: 10px;
}

.widget-stat {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* 4. Circle text: wrap at spaces only, no mid-word breaks, smaller to fit */
.circle-text {
    text-align: center;
    max-width: 90px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    line-height: 1.4;
    font-size: 0.54rem;
    letter-spacing: 0;
    white-space: normal;
}

/* 5. Visual list: icon floats to center when EN/DE text wraps to 2 lines */
.visual-list li {
    align-items: flex-start;
    line-height: 1.5;
}

.visual-list li i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* 6. Signature sub: DE "Gründungspartnerin / Geschäftsführende Partnerin" is very long */
.signature-box {
    min-width: 0;
    flex: 1;
}

.signature-box .sub {
    word-break: break-word;
    overflow-wrap: break-word;
    letter-spacing: 1px;
    white-space: normal;
    line-height: 1.4;
}

/* 7. Feature h4 headings: German compound words */
.feature-text h4 {
    hyphens: auto;
    word-break: break-word;
}

/* 8. Service card h3: long German service names */
.service-card h3 {
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 9. Footer h3: inline-block + letter-spacing + uppercase = very wide in DE */
.footer-col h3 {
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

/* 10. Meta labels: "BAR ASSOCIATION:" longer than "BARO:" */
.meta-label {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 11. Contact method labels */
.method-text span {
    word-break: break-word;
}

/* 12. About text paragraphs: long EN/DE sentences */
.about-text-lead,
.about-text-body,
.why-us-lead,
.contact-lead {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* 13. Hero actions: wrap so long EN/DE button text (e.g. "Kontaktdaten") doesn't
       overflow the viewport on mid-size screens */
.hero-actions {
    flex-wrap: wrap;
}

.hero-actions .btn {
    white-space: normal;
    text-align: center;
    min-width: 0;
}
