/* ==========================================
   MIRVA SAÇ EKİM MERKEZİ - CSS STYLES
   ========================================== */

/* ==========================================
   CSS Variables
   ========================================== */
.mobile-only-btn {
    display: none;
}

:root {
    /* Colors */
    --primary-green: #2E7D32;
    --primary-green-dark: #1B5E20;
    --primary-green-light: #4CAF50;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #A68523;
    --black: #1a1a1a;
    --dark: #2d2d2d;
    --gray-dark: #4a4a4a;
    --gray: #6b6b6b;
    --gray-light: #9a9a9a;
    --gray-lighter: #e0e0e0;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --cream: #fdfbf7;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

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

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(201, 162, 39, 0.1));
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ==========================================
   Button Styles
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

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

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

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-green);
}

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

.btn-block {
    width: 100%;
}

/* ==========================================
   Preloader
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader .leaf-icon {
    font-size: 3rem;
    color: var(--primary-green);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader img {
    margin: 0 auto;
}

.loader span {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--gold);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: var(--transition-normal);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-bar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.top-bar-center {
    margin-top: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-bar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-left .header-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.top-bar-left .header-email:hover {
    opacity: 0.85;
}

.top-bar-left .header-email i {
    font-size: 14px;
}

.top-bar-center .header-slogan {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.top-bar-right a {
    color: #fff;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    transform: translateY(-2px);
}

/* Sosyal Medya Hover Renkleri */
.top-bar-right a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.top-bar-right a[title="X (Twitter)"]:hover {
    background: #000000;
    color: #fff;
}

.top-bar-right a[title="YouTube"]:hover {
    background: #FF0000;
    color: #fff;
}

.top-bar-right a[title="Facebook"]:hover {
    background: #1877F2;
    color: #fff;
}

.top-bar-right a[title="NSosyal"]:hover {
    background: linear-gradient(to right, #47c7e9, #2c59eb);
}

.top-bar-right a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.top-bar-right a:hover img {
    filter: none;
}

/* ==========================================
   Header & Navigation
   ========================================== */
#header {
    position: fixed;
    top: 44px; /* Top bar yüksekliği */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
}

#header.scrolled {
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 75px;
    width: auto;
}

/* Logo Swapping Logic */
.logo .logo-normal {
    display: none;
}
.logo .logo-transparent {
    display: block;
}

#header.scrolled .logo-normal {
    display: block;
}
#header.scrolled .logo-transparent {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

#header:not(.scrolled) .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
}

#header:not(.scrolled) .phone-link {
    color: var(--white);
}

.phone-link i {
    color: var(--gold);
}

.nav-btn {
    padding: 12px 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition-normal);
}

#header:not(.scrolled) .hamburger span {
    background: var(--white);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px; /* Top bar + navbar için artırıldı */
    background: linear-gradient(135deg, var(--gray) 20%, var(--dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?w=1920') center/cover no-repeat;
    opacity: 0.2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: #e2e2e2;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-grid .img-1 {
    margin-top: 40px;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--section-padding);
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
}

.service-card.featured::before {
    background: var(--gold);
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-green);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

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

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li i {
    color: var(--gold);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

.service-card.featured .service-link {
    color: var(--gold);
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   Techniques Section
   ========================================== */
.techniques {
    padding: var(--section-padding);
    background: var(--white);
}

.techniques-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.technique-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
}

.technique-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.technique-card.featured {
    background: linear-gradient(135deg, var(--black), var(--dark));
    border-color: var(--gold);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.technique-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.technique-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.technique-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.technique-card.featured .technique-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.technique-card h3 {
    font-size: 1.375rem;
}

.technique-card.featured h3 {
    color: var(--white);
}

.technique-card p {
    margin-bottom: 1.5rem;
}

.technique-card.featured p {
    color: var(--gray-light);
}

.technique-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.technique-card.featured .technique-features li {
    color: var(--gray-light);
}

.technique-features li i {
    color: var(--primary-green);
}

.technique-card.featured .technique-features li i {
    color: var(--gold);
}

.technique-price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lighter);
    text-align: center;
}

.technique-card.featured .technique-price {
    border-color: rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.technique-card.featured .price-label {
    color: var(--gray-light);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

/* ==========================================
   Process Section
   ========================================== */
.process {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--black), var(--dark));
}

.process .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.process h2 {
    color: var(--white);
}

.process .section-header p {
    color: var(--gray-light);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-content {
    max-width: 180px;
}

.process-content h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

.process-icon {
    margin-top: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    color: var(--gold);
    font-size: 1rem;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    padding: var(--section-padding);
    background: var(--cream);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-lighter);
}

.before-after > div {
    position: relative;
}

.before-after img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.before-after .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.25rem;
    margin: 0 3px;
}

.testimonial-card > p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.testimonial-avatar::after {
    content: attr(data-initials);
}

.author-info {
    text-align: left;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition-normal);
}

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

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray-lighter);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot.active {
    width: 30px;
    background: var(--primary-green);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--primary-green);
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--dark);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Map Section
   ========================================== */
.map {
    line-height: 0;
}

.map iframe {
    filter: grayscale(20%);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--black);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    background-color: var(--white);
    height: auto;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
    font-size: 0.9375rem;
    color: var(--gray-light);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9375rem;
    color: var(--gray-light);
}

.footer-contact ul li i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--gray-light);
}

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

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: flex;
        margin-top: 40px;
    }
    
    .image-frame {
        width: 100%;
        max-width: 320px;
        height: 380px;
    }
    
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .techniques-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobil */
    .top-bar-center {
        display: none;
    }
    
    .top-bar-container {
        padding: 0 15px;
    }
    
    .top-bar-left .header-email span {
        display: none;
    }
    
    .top-bar-right {
        gap: 8px;
    }
    
    .top-bar-right a {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .top-bar-right a img {
        width: 18px;
        height: 18px;
    }
    
    /* Navbar Mobil */
    #header {
        top: 40px;
    }
    
    #header.scrolled {
        top: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 1002;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-only-btn {
        display: block !important;
        margin-top: 15px;
    }
    
    .mobile-only-btn .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links a {
        color: var(--dark) !important;
        font-size: 1.125rem;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-btn,
    .phone-link {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
        z-index: 1003;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social,
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Form vurgulama animasyonu */
.form-highlight {
    animation: formPulse 1.2s ease;
}

@keyframes formPulse {
    0%   { box-shadow: 0 0 0 0 rgba(46,125,50,0.5); }
    50%  { box-shadow: 0 0 0 16px rgba(46,125,50,0.15); }
    100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}

/* ==========================================
   Dil Değiştirici
   ========================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    padding: 4px;
}

.lang-btn {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--gray);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--primary-green);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(46,125,50,0.35);
}

/* Header scrolled durumunda lang-switcher rengi */
#header.scrolled .lang-switcher {
    background: rgba(46,125,50,0.06);
    border-color: var(--gray-lighter);
}

#header.scrolled .lang-btn {
    color: var(--gray-dark);
}

/* ==========================================
   Arapça (RTL) Desteği
   ========================================== */
[dir="rtl"] body,
.lang-ar {
    font-family: 'Noto Sans Arabic', 'Poppins', sans-serif;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .about-content,
[dir="rtl"] .contact-info {
    text-align: right;
}

[dir="rtl"] .section-header {
    text-align: right;
    margin: 0 0 60px auto;
}

[dir="rtl"] .section-header.text-center {
    text-align: center;
    margin: 0 auto 60px;
}

[dir="rtl"] .hero-buttons,
[dir="rtl"] .cta-buttons {
    justify-content: flex-start;
}

[dir="rtl"] .feature-item,
[dir="rtl"] .info-item,
[dir="rtl"] .process-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-text,
[dir="rtl"] .info-text {
    text-align: right;
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .service-features li,
[dir="rtl"] .technique-features li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .about-features {
    direction: rtl;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-contact ul li {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-form label,
[dir="rtl"] .section-tag {
    display: block;
    text-align: right;
}

[dir="rtl"] .section-header.text-center .section-tag,
[dir="rtl"] .section-header.text-center h2,
[dir="rtl"] .section-header.text-center p {
    text-align: center;
}

[dir="rtl"] .hero-stats {
    justify-content: flex-start;
}

[dir="rtl"] .stat-item {
    text-align: center;
}

[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .process-content {
    text-align: right;
}

[dir="rtl"] .top-bar-container {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .lang-switcher {
        order: -1;
    }

    [dir="rtl"] .hero-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   FAQ / SSS Section
   ========================================== */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(46,125,50,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Filtre Butonları */
.faq-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.faq-filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-lighter);
    background: var(--white);
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-filter-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.faq-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(46,125,50,0.35);
}

/* Arama Kutusu */
.faq-search-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto 50px;
}

.faq-search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 1rem;
    pointer-events: none;
}

.faq-search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-search::placeholder {
    color: var(--gray-light);
}

.faq-search:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(46,125,50,0.1);
}

/* FAQ Liste */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* FAQ Item */
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(46,125,50,0.25);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 6px 24px rgba(46,125,50,0.12);
}

.faq-item.hidden {
    display: none;
}

/* Soru Butonu */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(46,125,50,0.03);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: rgba(46,125,50,0.08);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-green);
    color: var(--white);
}

/* Cevap Alanı */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--dark);
}

/* Sonuç Bulunamadı */
.faq-no-result {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.faq-no-result i {
    font-size: 3rem;
    color: var(--gray-lighter);
    margin-bottom: 16px;
    display: block;
}

.faq-no-result p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 6px;
}

.faq-no-result span {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Alt CTA */
.faq-cta {
    text-align: center;
    margin-top: 56px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(46,125,50,0.06), rgba(201,162,39,0.06));
    border-radius: var(--radius-xl);
    border: 1.5px dashed rgba(46,125,50,0.25);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-filter {
        gap: 8px;
    }

    .faq-filter-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
}

/* ==========================================
   Dropdown Lang Secici
   ========================================== */
.lang-dropdown { position: relative; }

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 8px 14px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.25s ease;
    white-space: nowrap;
    user-select: none;
}

#header.scrolled .lang-current {
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.3);
    color: var(--dark);
}

.lang-current:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
#header.scrolled .lang-current:hover { background: rgba(46, 125, 50, 0.14); }

.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-code { font-size: 0.8125rem; letter-spacing: 0.5px; }
.lang-arrow { font-size: 0.625rem; transition: transform 0.25s ease; }
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }

.lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    list-style: none;
    padding: 6px 0;
    min-width: 152px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(0,0,0,0.07);
}

.lang-dropdown.open .lang-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: background 0.15s ease;
}

.lang-option:hover { background: var(--off-white); color: var(--primary-green); }
.lang-option.active { color: var(--primary-green); font-weight: 700; background: rgba(46,125,50,0.06); }
.lang-opt-flag { font-size: 1.125rem; line-height: 1; }

/* Service Areas */
.service-areas { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.service-area-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    background: rgba(46,125,50,0.06);
    border-left: 3px solid var(--primary-green);
    border-radius: 0 8px 8px 0;
}

.service-area-item strong { font-size: 0.9375rem; font-weight: 600; color: var(--primary-green-dark); }
.service-area-item span { font-size: 0.8125rem; color: var(--gray); }

.service-area-turkey {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: rgba(201,162,39,0.08);
    border-left-color: var(--gold);
}

.service-area-turkey i { color: var(--gold); font-size: 0.875rem; flex-shrink: 0; }
.service-area-turkey span { font-size: 0.8125rem; color: var(--gray-dark); font-style: italic; }

/* Chat Modal */
.chat-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-modal.active { opacity: 1; pointer-events: auto; }

.chat-modal-inner {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}

.chat-modal.active .chat-modal-inner { transform: translateY(0) scale(1); }

.chat-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    flex-shrink: 0;
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }

.chat-header h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-primary);
}

.chat-status { font-size: 0.75rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; margin: 0; }

.chat-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #69F0AE;
    box-shadow: 0 0 0 2px rgba(105,240,174,0.3);
    animation: chatPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(105,240,174,0.3); }
    50%       { box-shadow: 0 0 0 5px rgba(105,240,174,0.1); }
}

.chat-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; color: var(--white);
    font-size: 1.25rem; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s ease; line-height: 1; flex-shrink: 0;
}

.chat-close:hover { background: rgba(255,255,255,0.35); }

.chat-messages {
    flex: 1; overflow-y: auto; padding: 20px;
    display: flex; flex-direction: column; gap: 12px;
    min-height: 180px; max-height: 280px; scroll-behavior: smooth;
}

.chat-bubble {
    max-width: 85%; padding: 12px 16px; border-radius: 18px;
    font-size: 0.875rem; line-height: 1.5; animation: bubbleIn 0.25s ease;
}

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

.chat-bubble--bot { background: var(--off-white); color: var(--dark); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bubble--user { background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark)); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; }

.chat-typing-indicator { display: flex; align-items: center; gap: 4px; padding: 14px 18px; }

.chat-typing-indicator span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gray-light); animation: typingDot 1.4s infinite ease-in-out;
}

.chat-typing-indicator span:nth-child(1) { animation-delay: 0s; }
.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); background: var(--gray-light); }
    30%            { transform: translateY(-8px); background: var(--primary-green); }
}

.chat-quick-replies { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 8px; max-height: 200px; overflow-y: auto; }

.chat-quick-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-lighter);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    text-align: left;
    white-space: normal;
    line-height: 1.3;
}

.chat-quick-btn:hover { border-color: var(--primary-green); background: rgba(46,125,50,0.06); color: var(--primary-green); transform: translateY(-1px); }

.chat-contact-form { padding: 16px 20px 20px; border-top: 1px solid var(--gray-lighter); display: flex; flex-direction: column; gap: 10px; }
.chat-form-desc { font-size: 0.8125rem; color: var(--gray); margin: 0 0 4px; line-height: 1.5; }

.chat-input {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-lighter);
    border-radius: 10px; font-family: var(--font-primary); font-size: 0.875rem;
    color: var(--dark); background: var(--off-white); transition: border-color 0.2s ease; outline: none;
}

.chat-input:focus { border-color: var(--primary-green); background: var(--white); }

.chat-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.9375rem; background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-color: transparent; padding: 13px 20px; border-radius: 12px;
    font-weight: 600; letter-spacing: 0.3px;
}

.chat-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.chat-wa-btn:disabled { opacity: 0.75; transform: none; }

.chat-input-area { padding: 12px 16px; border-top: 1px solid var(--gray-lighter); display: flex; gap: 8px; align-items: center; }

.chat-free-input {
    flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-lighter);
    border-radius: 22px; font-family: var(--font-primary); font-size: 0.875rem; outline: none; transition: border-color 0.2s;
}

.chat-free-input:focus { border-color: var(--primary-green); }

.chat-send-btn {
    width: 40px; height: 40px; border-radius: 50%; background: var(--primary-green);
    color: var(--white); border: none; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0;
}

.chat-send-btn:hover { background: var(--primary-green-dark); transform: scale(1.1); }

/* RTL */
[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
[dir="rtl"] .service-area-item { border-left: none; border-right: 3px solid var(--primary-green); border-radius: 8px 0 0 8px; }
[dir="rtl"] .service-area-turkey { border-right-color: var(--gold); }
[dir="rtl"] .info-item .info-text { text-align: right; }
[dir="rtl"] .chat-bubble--user { align-self: flex-start; border-bottom-right-radius: 18px; border-bottom-left-radius: 4px; }
[dir="rtl"] .chat-bubble--bot { align-self: flex-end; border-bottom-left-radius: 18px; border-bottom-right-radius: 4px; }
[dir="rtl"] .lang-options { right: auto; left: 0; }
body.lang-ar * { font-family: 'Noto Sans Arabic', var(--font-primary), sans-serif; }

.faq-item.hidden { display: none; }

@media (max-width: 480px) {
    .chat-modal { padding: 0; align-items: flex-end; }
    .chat-modal-inner { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 92vh; }
}

@media (max-width: 768px) {
    .lang-dropdown { order: -1; }
    .lang-current { background: rgba(46,125,50,0.1); border-color: rgba(46,125,50,0.3); color: var(--dark); padding: 7px 12px; }
    .lang-options { right: 0; left: auto; }
}

/* ==========================================
   Legal Modals (Gizlilik / KVKK / Koşullar)
   ========================================== */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.legal-modal.active {
    display: flex;
}

.legal-modal-inner {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.legal-modal-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
}

.legal-modal-inner h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 6px;
}

.legal-modal-inner p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.legal-modal-inner a {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
    transition: color 0.2s;
}

.legal-modal-close:hover { color: var(--dark); }

@media (max-width: 480px) {
    .legal-modal-inner { padding: 28px 20px; }
}
