/* ==========================================
   GENEL RESET & TEMELLER
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a8028;
    --primary-light: #6aa33a;
    --primary-dark: #3d6b20;
    --primary-bg: #f8faf5;
    --primary-bg-alt: #e8f0de;
    --accent: #8bc34a;
    --accent-light: #a5d66e;
    --white: #ffffff;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--primary-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg-alt);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}
.section-footer { text-align: center; margin-top: 40px; }
/* BUTONLAR */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74,128,40,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.logo-text span { color: var(--accent-light); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li { list-style: none; }

.nav-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.btn-randevu {
    background: var(--accent) !important;
    color: var(--primary-dark) !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
}

.btn-randevu:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px) !important;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    min-width: 230px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1002;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropdown-menu a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    border-radius: 8px !important;
    background: transparent !important;
}

.dropdown-menu a:hover {
    background: #f0f5eb !important;
    color: var(--primary) !important;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active { opacity: 1; visibility: visible; }

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 1; }

.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,10,0.88) 0%, rgba(45,80,22,0.75) 50%, rgba(61,107,30,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.hero-text { max-width: 700px; }

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-text h1 span {
    position: relative;
    color: var(--accent-light);
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(139,195,74,0.25);
    border-radius: 4px;
    z-index: -1;
}

.hero-text > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-glass:hover i { transform: translateX(3px); }
.btn-glass i { font-size: 0.85rem; transition: transform 0.3s ease; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    max-width: fit-content;
}

.hero-stat { text-align: center; }

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ==========================================
   HAKKIMDA ÖN İZLEME
   ========================================== */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.about-experience {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text { font-size: 0.85rem; opacity: 0.9; margin-top: 5px; display: block; }

.about-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-deco-img { width: 100%; height: 100%; object-fit: cover; }

.about-preview-text h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-preview-text h2 span { color: var(--primary); }

.about-preview-text > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
}

.about-feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 3px; }
.about-feature p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ==========================================
   HİZMETLER SLIDER
   ========================================== */
.services-section { background: var(--white); overflow: hidden; }

.services-slider-wrapper {
    overflow: hidden;
    padding: 10px 0 40px;
    position: relative;
}

.services-slider-wrapper::before,
.services-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.services-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.services-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.services-track {
    display: flex;
    gap: 25px;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.services-track:active { cursor: grabbing; }

.service-slide { flex-shrink: 0; width: 300px; }

.service-slide-inner {
    display: block;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    height: 100%;
}

.service-slide-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-slide-img { height: 180px; overflow: hidden; position: relative; }

.service-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-slide-inner:hover .service-slide-img img { transform: scale(1.1); }

.service-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-bg), var(--primary-bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.service-slide-overlay { position: absolute; top: 12px; right: 12px; z-index: 1; }

.service-slide-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-slide-body { padding: 20px; }

.service-slide-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-slide-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.service-slide-link i { font-size: 0.72rem; transition: transform 0.3s ease; }
.service-slide-inner:hover .service-slide-link i { transform: translateX(4px); }

/* ==========================================
   VKİ ANASAYFA
   ========================================== */
.home-vki-section { background: var(--primary-bg); }

.home-vki-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.home-vki-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.home-vki-text h2 span { color: var(--primary); }

.home-vki-text > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vki-input-group {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.vki-input { flex: 1; min-width: 120px; }

.vki-input label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.vki-input input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.vki-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

.vki-input-group .btn { padding: 13px 28px; white-space: nowrap; }
.vki-home-sonuc { margin-top: 20px; }

.vki-home-result {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 5px solid;
}

.vki-home-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.vki-home-num i { font-size: 1.2rem; margin-right: 5px; }
.vki-home-kat strong { display: block; font-size: 1.05rem; }
.vki-home-kat span { font-size: 0.85rem; color: var(--text-light); }

.vki-hata {
    padding: 12px 18px;
    background: #fde8e8;
    color: #e74c3c;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.vki-detay-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.vki-detay-link:hover { text-decoration: underline; }
.vki-detay-link i { font-size: 0.75rem; transition: transform 0.3s; }
.vki-detay-link:hover i { transform: translateX(4px); }

.vki-scale { display: flex; flex-direction: column; gap: 8px; }

.vki-scale-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    color: #fff;
    transition: var(--transition);
}

.vki-scale-item:hover { transform: translateX(8px); }
.vki-scale-label { font-weight: 600; font-size: 0.95rem; }
.vki-scale-range { font-size: 0.85rem; opacity: 0.85; }

/* ==========================================
   SÜREÇ
   ========================================== */
.process-section { background: var(--white); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card { text-align: center; padding: 30px 20px; position: relative; }

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-bg-alt);
    line-height: 1;
    margin-bottom: 10px;
    transition: var(--transition);
}

.process-card:hover .process-number { color: var(--primary); transform: scale(1.1); }

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(45,80,22,0.25);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(45,80,22,0.35);
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.process-line { display: none; }

@media (min-width: 769px) {
    .process-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 95px;
        right: -15px;
        width: 30px;
        height: 2px;
        background: var(--primary-bg-alt);
    }
    .process-card:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 91px;
        right: -19px;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--primary-bg-alt);
        border-right: 2px solid var(--primary-bg-alt);
        transform: rotate(45deg);
    }
}

/* ==========================================
   RAKAMLAR
   ========================================== */
.stats-section { position: relative; padding: 80px 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; z-index: 1; }
.stats-bg-img { width: 100%; height: 100%; object-fit: cover; }

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,10,0.92), rgba(45,80,22,0.88));
}

.stats-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { padding: 20px; }
.stat-item i { font-size: 2.2rem; color: var(--accent-light); margin-bottom: 15px; display: block; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.stat-number::after { content: '+'; font-size: 1.5rem; }
.stat-item:last-child .stat-number::after { content: '%'; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 5px; }

/* ==========================================
   RANDEVU ANASAYFA
   ========================================== */
.home-randevu-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.home-randevu-section .container { position: relative; z-index: 1; }

.home-randevu-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.home-randevu-info { padding: 20px 0; }

.home-randevu-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.home-randevu-step:last-of-type { border-bottom: none; }

.hrs-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45,80,22,0.25);
}

.home-randevu-step h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.home-randevu-step > div:last-child p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.home-randevu-quick {
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.hrq-header { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }

.hrq-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.hrq-header h3 i { color: var(--accent); font-size: 1.1rem; }
.hrq-header p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.hrq-slots { max-height: 350px; overflow-y: auto; }

.hrq-date-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 0 10px;
    border-bottom: 2px solid var(--primary-bg-alt);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hrq-date-label::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.82rem;
}

.hrq-time-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.hrq-time-btn {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hrq-time-btn::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-lighter);
    transition: var(--transition);
}

.hrq-time-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45,80,22,0.25);
}

.hrq-time-btn:hover::before { color: rgba(255,255,255,0.7); }

.hrq-empty { text-align: center; padding: 40px 20px; color: var(--text-lighter); }
.hrq-empty i { font-size: 3rem; margin-bottom: 15px; display: block; opacity: 0.2; }

/* ==========================================
   CTA
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content { position: relative; z-index: 2; }

.cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text h2 span { color: var(--accent-light); }

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.cta-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ==========================================
   TARİFLER
   ========================================== */
.home-tarif-section { background: var(--primary-bg); }

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tarif-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: block;
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tarif-card-img { height: 200px; overflow: hidden; position: relative; }

.tarif-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tarif-card:hover .tarif-card-img img { transform: scale(1.08); }

.tarif-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-lighter);
}

.tarif-zorluk {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.tarif-zorluk-kolay { background: #27ae60; }
.tarif-zorluk-orta { background: #f39c12; }
.tarif-zorluk-zor { background: #e74c3c; }

.tarif-card-body { padding: 20px; }

.tarif-kategori {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-bg-alt);
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 8px;
}

.tarif-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.tarif-meta { display: flex; gap: 15px; flex-wrap: wrap; }

.tarif-meta span {
    font-size: 0.82rem;
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tarif-meta i { font-size: 0.75rem; color: var(--primary); }

/* ==========================================
   BLOG
   ========================================== */
.blog-section { background: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-bg-alt);
}

.blog-card-image { height: 220px; overflow: hidden; }

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.08); }

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

.blog-card-body { padding: 25px; }

.blog-category {
    display: inline-block;
    background: var(--primary-bg-alt);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.blog-date {
    color: var(--text-lighter);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read i { font-size: 0.75rem; transition: transform 0.3s ease; }
.blog-card:hover .blog-read i { transform: translateX(4px); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon { background: var(--primary); }
.footer-logo .logo-text { color: var(--white); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; }
.footer-logo .logo-text span { color: var(--accent); }
.footer-desc { font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
}

.footer-contact li i { color: var(--accent); margin-top: 4px; font-size: 0.9rem; }

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ==========================================
   FORM, BANNER, İÇ SAYFALAR
   ========================================== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; font-size: 0.92rem; color: var(--text); margin-bottom: 8px; }

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,80,22,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-desc { color: var(--text-light); font-size: 0.92rem; margin-bottom: 25px; }
.required { color: #e74c3c; }

.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; position: relative; z-index: 2; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--accent-light); }

/* RANDEVU SAYFASI */
.randevu-section { padding: 80px 0; background: var(--primary-bg); }

.randevu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.randevu-calendar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.calendar-header h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--dark); }

.calendar-nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
    text-decoration: none;
}

.calendar-nav-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.calendar-day-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-lighter);
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    transition: var(--transition);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--text);
}

.calendar-day.disabled { color: var(--text-lighter); opacity: 0.35; cursor: not-allowed; }
.calendar-day.today { border: 2px solid var(--primary); font-weight: 700; color: var(--primary); }

.calendar-day.has-slot {
    background: var(--primary-bg-alt);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

a.calendar-day.has-slot:hover { background: var(--primary); color: var(--white); transform: scale(1.05); }

.calendar-day.selected {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(45,80,22,0.3);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-lighter);
}

.calendar-legend > span { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.dot-musait { background: var(--primary-bg-alt); border: 1px solid var(--primary); }
.dot-bugun { border: 2px solid var(--primary); background: transparent; }
.dot-secili { background: var(--primary); }

.time-slots { margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--border-light); }

.time-slots h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-slots h4 i { color: var(--primary); }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.slot-btn {
    padding: 12px 8px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    color: var(--text);
}

.slot-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg-alt); }

.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(45,80,22,0.25);
}

.slots-empty { text-align: center; padding: 25px; color: var(--text-lighter); }
.slots-empty i { font-size: 2rem; margin-bottom: 10px; display: block; opacity: 0.3; }

.randevu-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.randevu-form h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.randevu-form h3 i { color: var(--primary); }

.secilen-slot { margin-bottom: 20px; }

.secilen-slot-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-bg-alt);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 15px 18px;
}

.secilen-slot-inner > i { font-size: 1.5rem; color: var(--primary); }
.secilen-slot-inner strong { display: block; font-size: 0.82rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.secilen-slot-inner span { font-size: 1rem; font-weight: 600; color: var(--dark); }

#gonderBtn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
#gonderBtn:disabled { opacity: 0.45; cursor: not-allowed; }

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-lighter);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* BLOG DETAY, HİZMETLER, İLETİŞİM, HAKKIMDA - İÇ SAYFALAR */
.blog-list-section { padding: 80px 0; }
.blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-detail-section { padding: 80px 0; }
.blog-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }

.blog-detail-content {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-detail-image { width: 100%; height: 400px; overflow: hidden; }
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-body { padding: 40px; }

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--text-lighter);
}

.blog-detail-meta span { display: flex; align-items: center; gap: 6px; }

.blog-detail-body h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.blog-detail-body .content { font-size: 1.02rem; line-height: 1.9; color: var(--text); }
.blog-detail-body .content p { margin-bottom: 20px; }
.blog-detail-body .content h2, .blog-detail-body .content h3 { font-family: var(--font-heading); color: var(--dark); margin: 30px 0 15px; }
.blog-detail-body .content img { border-radius: var(--radius-sm); margin: 20px 0; }
.blog-detail-body .content ul, .blog-detail-body .content ol { margin: 15px 0; padding-left: 25px; }
.blog-detail-body .content li { margin-bottom: 8px; list-style: disc; }

.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-bg-alt);
}

.sidebar-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-info h5 { font-size: 0.9rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 5px; }
.sidebar-post-info span { font-size: 0.78rem; color: var(--text-lighter); }

.sidebar-cta { background: var(--primary) !important; color: var(--white); }
.sidebar-cta h4 { color: var(--white) !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: 15px; }

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.blog-share span { font-weight: 600; font-size: 0.92rem; color: var(--dark); }

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.share-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.blog-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* HİZMETLER */
.hizmetler-section { padding: 80px 0; }
.hizmetler-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.hizmet-detail-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.hizmet-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hizmet-detail-img { height: 250px; overflow: hidden; }
.hizmet-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hizmet-detail-card:hover .hizmet-detail-img img { transform: scale(1.05); }
.hizmet-detail-body { padding: 30px; }
.hizmet-detail-body h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.hizmet-detail-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

.hizmet-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.hizmet-detail-card:hover .hizmet-icon { background: var(--primary); color: var(--white); }

.hizmetler-cta {
    text-align: center;
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-top: 60px;
}

.hizmetler-cta h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.hizmetler-cta p { color: var(--text-light); margin-bottom: 25px; }

/* İLETİŞİM */
.iletisim-section { padding: 80px 0; }
.iletisim-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }

.iletisim-bilgi { background: var(--primary); border-radius: var(--radius-md); padding: 40px; color: var(--white); }
.iletisim-bilgi h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; }
.iletisim-bilgi > p { opacity: 0.85; font-size: 0.95rem; margin-bottom: 30px; line-height: 1.7; }
.iletisim-item { display: flex; gap: 15px; margin-bottom: 25px; }
.iletisim-item-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.iletisim-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.iletisim-item p { font-size: 0.9rem; opacity: 0.8; }

.iletisim-form { background: var(--white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }
.iletisim-form h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 25px; }

.iletisim-social { display: flex; gap: 12px; margin-top: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.15); }
.iletisim-social a { width: 42px; height: 42px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: var(--transition); }
.iletisim-social a:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

/* HAKKIMDA */
.hakkimda-section { padding: 80px 0; }
.hakkimda-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.hakkimda-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.hakkimda-img img { width: 100%; height: auto; }
.hakkimda-content h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.hakkimda-content h2 span { color: var(--primary); }
.hakkimda-content p { color: var(--text-light); font-size: 1.02rem; line-height: 1.9; margin-bottom: 20px; }
.hakkimda-text { color: var(--text-light); font-size: 1.02rem; line-height: 1.9; margin-bottom: 30px; }
.hakkimda-text p { margin-bottom: 15px; }

.hakkimda-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 25px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.hakkimda-info-card h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.hakkimda-info-card h4 i { color: var(--primary); }
.hakkimda-info-card ul li { padding: 8px 0 8px 15px; font-size: 0.92rem; color: var(--text-light); border-bottom: 1px solid var(--border-light); position: relative; }
.hakkimda-info-card ul li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; transform: translateY(-50%); }
.hakkimda-info-card ul li:last-child { border-bottom: none; }

.hakkimda-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 35px; }

.value-card { background: var(--primary-bg); border-radius: var(--radius-md); padding: 25px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon { width: 55px; height: 55px; background: var(--primary-bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.3rem; color: var(--primary); }
.value-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* VKİ & DEĞİŞİM SAYFASI */
.vki-section { background: var(--white); }
.vki-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.vki-form-card, .vki-bilgi-card { background: var(--primary-bg); border-radius: var(--radius-md); padding: 35px; }
.vki-form-card h3, .vki-bilgi-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vki-form-card h3 i, .vki-bilgi-card h3 i { color: var(--primary); }
.vki-form-card > p, .vki-bilgi-card > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 25px; line-height: 1.7; }

.vki-sonuc { margin-top: 25px; padding: 25px; background: var(--white); border-radius: var(--radius-md); border-left: 5px solid; display: flex; align-items: center; gap: 20px; }
.vki-sonuc-deger { text-align: center; }
.vki-sonuc-deger i { font-size: 1.5rem; display: block; margin-bottom: 5px; }
.vki-sonuc-deger span { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.vki-sonuc-text strong { font-size: 1.1rem; display: block; margin-bottom: 3px; }
.vki-sonuc-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.vki-tablo { margin: 20px 0; }
.vki-tablo-row { display: flex; justify-content: space-between; padding: 12px 15px; background: var(--white); border-radius: 6px; margin-bottom: 6px; }
.vki-tablo-aralik { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.vki-tablo-kat { font-size: 0.9rem; color: var(--text-light); }
.vki-uyari { display: flex; gap: 12px; align-items: flex-start; background: #fff3cd; padding: 15px; border-radius: 8px; margin: 20px 0; }
.vki-uyari i { color: #f39c12; font-size: 1.1rem; margin-top: 2px; }
.vki-uyari p { font-size: 0.85rem; color: #856404; margin: 0; line-height: 1.6; }

.degisim-section { background: var(--primary-bg); }
.degisim-filtre { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.degisim-filtre .filtre-btn { padding: 10px 22px; border-radius: var(--radius-xl); font-size: 0.9rem; font-weight: 500; color: var(--text-light); background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.degisim-filtre .filtre-btn:hover, .degisim-filtre .filtre-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.degisim-cards { display: flex; flex-direction: column; gap: 25px; }
.degisim-grup-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.degisim-grup-header { background: var(--primary); padding: 15px 25px; }
.degisim-grup-header h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin: 0; }
.degisim-grup-body { padding: 0 25px; }
.degisim-table-header { display: grid; grid-template-columns: 2fr 1fr 0.8fr 0.7fr 0.7fr 0.7fr; gap: 10px; padding: 14px 0; border-bottom: 2px solid var(--primary-bg-alt); font-size: 0.8rem; font-weight: 600; color: var(--text-lighter); text-transform: uppercase; }
.degisim-table-row { display: grid; grid-template-columns: 2fr 1fr 0.8fr 0.7fr 0.7fr 0.7fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; align-items: center; }
.degisim-table-row:last-child { border-bottom: none; }
.degisim-besin { font-weight: 500; color: var(--dark); }
.degisim-miktar { color: var(--text-light); font-size: 0.85rem; }
.degisim-kalori { font-weight: 600; color: var(--primary); }
.degisim-makro { color: var(--text-light); font-size: 0.85rem; }

/* TARİF DETAY */
.tarif-section { background: var(--primary-bg); }
.tarif-detay-section { padding: 80px 0; }
.tarif-detay-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.tarif-detay-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 25px; max-height: 400px; }
.tarif-detay-img img { width: 100%; height: 100%; object-fit: cover; }
.tarif-bilgi-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 30px; }
.tarif-bilgi-item { display: flex; align-items: center; gap: 12px; padding: 18px; background: var(--primary-bg); border-radius: var(--radius-sm); }
.tarif-bilgi-item i { font-size: 1.3rem; color: var(--primary); }
.tarif-bilgi-item span { font-size: 0.78rem; color: var(--text-lighter); display: block; }
.tarif-bilgi-item strong { font-size: 0.95rem; color: var(--dark); display: block; }
.tarif-malzemeler { background: var(--primary-bg); border-radius: var(--radius-md); padding: 25px; margin-bottom: 30px; }
.tarif-malzemeler h3, .tarif-yapilis h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.tarif-malzemeler h3 i, .tarif-yapilis h3 i { color: var(--primary); }
.malzeme-liste { font-size: 0.95rem; line-height: 2; color: var(--text); }
.yapilis-icerik { font-size: 1rem; line-height: 1.9; color: var(--text-light); }
.yapilis-icerik p { margin-bottom: 15px; }
.sidebar-tarif { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); align-items: center; }
.sidebar-tarif:last-child { border-bottom: none; }
.sidebar-tarif-img { width: 65px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.sidebar-tarif-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-tarif-info h5 { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 3px; }
.sidebar-tarif-info span { font-size: 0.78rem; color: var(--text-lighter); }

/* PAGINATION, 404, FLASH */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.9rem; font-weight: 500; border: 1px solid var(--border); transition: var(--transition); color: var(--text); }
.pagination a:hover { background: var(--primary-bg-alt); border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.error-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--primary-bg); padding-top: 80px; }
.error-content { text-align: center; max-width: 500px; }
.error-content h1 { font-family: var(--font-heading); font-size: 8rem; font-weight: 700; color: var(--primary); line-height: 1; opacity: 0.2; }
.error-content h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--dark); margin-bottom: 15px; margin-top: -20px; }
.error-content p { color: var(--text-light); margin-bottom: 30px; }
.error-actions { display: flex; gap: 15px; justify-content: center; }

.flash { padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.flash-basarili { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-hata { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-uyari { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

.no-content { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-lighter); font-size: 1rem; }

/* ANİMASYONLAR & YARDIMCILAR */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 20px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-3px); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 25px 30px;
        gap: 3px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }

    .nav-menu li a {
        display: flex;
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 8px;
        color: rgba(255,255,255,0.85);
    }

    .btn-randevu { text-align: center !important; justify-content: center !important; margin-top: 10px; width: 100% !important; }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        background: transparent;
        min-width: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-menu::before { display: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { color: rgba(255,255,255,0.7) !important; padding: 10px 15px !important; font-size: 0.9rem !important; }
    .dropdown-menu a:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
    .dropdown-menu a i { color: rgba(255,255,255,0.5); }
}

@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.8rem; }
    .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-content { grid-template-columns: repeat(2, 1fr); }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-image { display: none; }
    .cta-text h2, .cta-text p { text-align: center; }
    .cta-buttons { justify-content: center; }
    .home-vki-grid { grid-template-columns: 1fr; }
    .home-vki-visual { display: none; }
    .home-randevu-grid { grid-template-columns: 1fr; gap: 30px; }
    .randevu-grid { grid-template-columns: 1fr; }
    .randevu-form { position: static; }
    .blog-detail-grid { grid-template-columns: 1fr; }
    .iletisim-grid { grid-template-columns: 1fr; }
    .hakkimda-grid { grid-template-columns: 1fr; }
    .hizmetler-detail-grid { grid-template-columns: 1fr; }
    .tarif-grid { grid-template-columns: repeat(2, 1fr); }
    .tarif-detay-grid { grid-template-columns: 1fr; }
    .tarif-bilgi-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text > p { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 15px; padding: 20px 25px; width: 100%; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }
    .btn-lg, .btn-glass { justify-content: center; }
    .about-decoration { display: none; }
    .about-preview-image { padding: 0; }
    .about-features { grid-template-columns: 1fr; }
    .about-preview-text h2 { font-size: 1.8rem; }
    .process-grid { grid-template-columns: 1fr; gap: 15px; }
    .stats-content { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2.2rem; }
    .blog-grid, .blog-list-grid, .tarif-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .page-banner { padding: 130px 0 60px; }
    .page-banner h1 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(3, 1fr); }
    .vki-input-group { flex-direction: column; }
    .vki-input-group .btn { width: 100%; justify-content: center; }
    .vki-grid { grid-template-columns: 1fr; }
    .hakkimda-values { grid-template-columns: 1fr; }
    .hizmetler-cta { padding: 30px 20px; }
    .degisim-table-header, .degisim-table-row { grid-template-columns: 1.5fr 1fr 0.8fr; }
    .degisim-table-header span:nth-child(n+4), .degisim-table-row span:nth-child(n+4) { display: none; }
    .service-slide { width: 260px; }
    .service-slide-img { height: 150px; }
    .services-track { gap: 18px; }
    .services-slider-wrapper::before, .services-slider-wrapper::after { width: 30px; }
    .home-randevu-quick { padding: 25px; }
    .hrq-time-btn { padding: 8px 16px; font-size: 0.85rem; }
    .hrs-number { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }
    .blog-detail-body { padding: 25px; }
    .blog-detail-body h1 { font-size: 1.5rem; }
    .randevu-calendar, .randevu-form, .iletisim-form { padding: 20px; }
    .cta-content h2 { font-size: 1.8rem; }
    .error-content h1 { font-size: 5rem; }
    .error-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero { min-height: auto; }
    .hero-content { padding: 120px 0 80px; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 12px 28px; font-size: 0.9rem; }
    .section-header h2 { font-size: 1.7rem; }
    .stats-content { grid-template-columns: 1fr; }
    .service-slide { width: 230px; }
    .service-slide-body { padding: 15px; }
    .service-slide-body h3 { font-size: 0.95rem; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .iletisim-bilgi { padding: 25px; }
    .hrq-time-row { gap: 8px; }
    .hrq-time-btn { padding: 8px 14px; font-size: 0.82rem; }
    .hrq-time-btn::before { display: none; }
    .tarif-bilgi-bar { grid-template-columns: 1fr 1fr; }
}