/*
Theme Name: Demirtaş Yönetim
Theme URI: https://demirtasyonetim.com
Author: Simetri Soft
Author URI: https://simetrisoft.com
Description: Bolu'da profesyonel apartman ve site yönetimi için özel tasarlanmış premium WordPress teması. Modern, SEO uyumlu ve mobil responsive tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: demirtas-yonetim
Tags: one-column, two-columns, custom-background, custom-header, custom-menu, featured-images, translation-ready, theme-options
*/

/* ================================================
   DEMIRTAŞ YÖNETİM - Premium WordPress Theme
   Bolu Profesyonel Apartman ve Site Yönetimi
   ================================================ */

/* Google Fonts - Rethink Sans */
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0f2544;
    --secondary: #4a5568;
    --accent: #ed8936;
    --accent-hover: #dd6b20;
    --gold: #d69e2e;
    --success: #38a169;
    --light: #f7fafc;
    --lighter: #ffffff;
    --dark: #1a202c;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    
    --font-display: 'Rethink Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Rethink Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --section-padding: clamp(60px, 10vw, 120px);
    --container-width: 1400px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--lighter);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

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; }

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Helper */
.btn-full {
    width: 100%;
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    color: rgba(255,255,255,0.9);
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left i {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social icons should be inline (not stacked) */
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
}

.top-bar-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ================================================
   MAIN HEADER
   ================================================ */
.main-header {
    background: var(--lighter);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 20px;
    max-width: 1600px; /* header menü taşmasını önlemek için geniş */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    max-width: 320px;
    margin-right: 10px;
}

/* Custom logo varsa (WP) da logo alanı küçülmesin */
.custom-logo-link{display:flex; align-items:center; flex:0 0 auto;}
.custom-logo{max-height:56px; width:auto; height:auto;}

/* Logo image (fallback) */
.logo .logo-img{display:block; width:56px; height:56px; object-fit:contain; border-radius:14px;}
@media (max-width: 768px){.logo .logo-img{width:48px;height:48px;border-radius:12px;}}


.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    display: block;
    white-space: nowrap;
}

.logo-text span:last-child {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    padding-left: 20px;
}

.main-nav > a,
.main-nav > .nav-dropdown > a {
    padding: 10px 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-nav > a > i,
.main-nav > .nav-dropdown > a > i {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Nav: prevent wrapping after adding icons */
.main-nav { flex-wrap: nowrap; overflow: visible; }
.main-nav > a,
.main-nav > .nav-dropdown > a { white-space: nowrap; }

/* Nav icons: more minimal by default, lively on hover */
.main-nav > a > i,
.main-nav > .nav-dropdown > a > i {
    font-size: 0.9rem;
    opacity: 0.45;
    transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.main-nav > a:hover > i,
.main-nav > a.active > i,
.main-nav > .nav-dropdown:hover > a > i {
    opacity: 0.9;
    color: var(--accent);
    transform: translateY(-1px);
}

.main-nav > a::after,
.main-nav > .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav > .nav-dropdown:hover > a {
    color: var(--primary);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.main-nav > .nav-dropdown:hover > a::after {
    width: 30px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a .dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 10px 0;
    border: 1px solid var(--gray-200);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
    border-left-color: var(--accent);
}

.dropdown-menu a i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dropdown-menu a:hover i {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.dropdown-menu a span {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a span small {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

.dropdown-menu .view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--accent);
    font-weight: 600;
    border-top: 1px solid var(--gray-200);
    margin-top: 5px;
}

.dropdown-menu .view-all:hover {
    background: rgba(237, 137, 54, 0.1);
    border-left-color: transparent;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--primary);
    border-radius: var(--radius-md);
    white-space: nowrap;
    flex-wrap: nowrap;
    box-shadow: 0 10px 22px rgba(26,54,93,.20);
}

.header-phone i {
    color: #fff;
}

.header-phone span {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    font-size: 0.95rem;
    display: inline;
}

/* Header WhatsApp CTA biraz daha kompakt */
.header-cta .btn.btn-whatsapp {
    padding: 12px 22px;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
}

/* ================================================
   HEADER RESPONSIVE - Geniş ekran → dar ekran geçişi
   ================================================ */

/* Geniş ekranlar: menü rahat sığsın */
@media (min-width: 1600px) {
    .main-header .container {
        max-width: 1700px;
    }
    .main-nav > a,
    .main-nav > .nav-dropdown > a {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .main-header .container {
        max-width: 1600px;
    }
    .main-nav > a,
    .main-nav > .nav-dropdown > a {
        padding: 10px 15px;
        font-size: 0.97rem;
    }
}

/* Orta-geniş ekranlarda header sıkışınca tek satır korunsun */
@media (max-width: 1400px) {
    .logo-text span:first-child { font-size: 1.42rem; }
    .main-nav { gap: 2px; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding: 10px 12px; font-size: 0.95rem; }
    .header-phone span { font-size: 0.93rem; }
}

@media (max-width: 1320px) {
    .main-nav { gap: 2px; padding-left: 14px; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding: 10px 10px; font-size: 0.93rem; }
    .header-cta .btn.btn-whatsapp { padding: 11px 16px; font-size: 0.93rem; }
    .header-phone { padding: 10px 12px; }
}

@media (max-width: 1220px) {
    .logo { max-width: 280px; }
    .logo-text span:first-child { font-size: 1.35rem; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding: 10px 9px; }
    .header-cta .btn.btn-whatsapp { padding: 10px 14px; }
}

@media (max-width: 1200px) {
    .logo-text span:first-child { font-size: 1.32rem; }
    .logo { max-width: 260px; }
    .main-nav > a,
    .main-nav > .nav-dropdown > a { padding: 10px 8px; font-size: 0.92rem; }
    .main-nav { gap: 1px; padding-left: 10px; }
    .header-phone span { font-size: 0.9rem; }
    /* WhatsApp yazısını gizle, sadece ikon */
    .header-cta .btn.btn-whatsapp { font-size: 0; padding: 10px 12px; }
    .header-cta .btn.btn-whatsapp i { font-size: 16px; margin: 0; }
}

@media (max-width: 1080px) {
    .logo-text span:first-child { font-size: 1.28rem; }
    .header-phone span { font-size: 0.88rem; }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--lighter), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(237, 137, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

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

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    color: white;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

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

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.floating-text strong {
    display: block;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.floating-text span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ================================================
   FEATURES STRIP
   ================================================ */
.features-strip {
    background: white;
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    margin-left: 40px;
    margin-right: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: var(--gray-100);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ================================================
   SECTION STYLES
   ================================================ */
section {
    padding: var(--section-padding) 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(237, 137, 54, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 20px;
}

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

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    background: var(--gray-100);
}

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

.services-cta {
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-top: -60px;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-content p {
    color: #5b6777;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(15, 45, 90, 0.18);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 700;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.service-link:hover {
    gap: 12px;
    border-color: rgba(15, 45, 90, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    background: white;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid white;
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.experience-badge span {
    font-size: 0.875rem;
    display: block;
    margin-top: 5px;
}

.about-content .section-badge {
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature i {
    width: 24px;
    height: 24px;
    background: rgba(56, 161, 105, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-feature span {
    color: var(--gray-700);
    font-weight: 500;
}

/* ================================================
   WHY US SECTION
   ================================================ */
.why-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us .section-header h2 {
    color: white;
}

.why-us .section-header p {
    color: rgba(255,255,255,0.8);
}

.why-us .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

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

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cta-buttons .btn {
    white-space: nowrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
}

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

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.footer-brand .logo-text span:first-child {
    color: white;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-services-btn{
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    font-size: 0.92rem;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.footer-services-btn:hover{
    background: rgba(237, 137, 54, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact span {
    display: block;
}

.footer-contact strong {
    color: white;
    font-weight: 500;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-credit{
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    white-space: nowrap;
}

.footer-credit span{
    color: var(--accent);
}

/* ================================================
   FLOATING BUTTONS (Left Call + Right WhatsApp)
   ================================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.floating-buttons.left {
    left: 30px;
}

.floating-buttons.right {
    right: 30px;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
    color: white;
}

.floating-buttons a i {
    font-size: 1.5rem;
}

/* Desktop: sadece ikon */
@media (min-width: 769px) {
    .whatsapp-float a span,
    .call-float a span {
        display: none;
    }

    .whatsapp-float a,
    .call-float a {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        gap: 0;
    }

    .floating-buttons {
        bottom: 28px;
    }
}

/* Call Button - Left */
.call-float a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 5px 25px rgba(26, 54, 93, 0.4);
}

.call-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(26, 54, 93, 0.5);
}

/* WhatsApp Button - Right */
.whatsapp-float a {
    background: #25d366;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* Pulse Animation */
.whatsapp-float a::before,
.call-float a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -1;
}

.whatsapp-float a::before {
    background: #25d366;
}

.call-float a::before {
    background: var(--primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ================================================
   PAGE HEADER (Inner Pages)
   ================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1574362848149-11496d93a7c7?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-subtitle {
    color: rgba(255,255,255,0.9);
    margin: 0 0 18px;
    font-size: 1.05rem;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
}

/* ================================================
   SERVICE SINGLE PAGE
   ================================================ */
.service-single {
    padding: 80px 0;
}

.service-single-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.service-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-single-content h2 {
    margin-bottom: 20px;
}

.service-single-content p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.service-features-list {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
}

.service-features-list h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-features-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-features-list ul li:last-child {
    border-bottom: none;
}

.service-features-list ul li i {
    color: var(--success);
    margin-top: 4px;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 500;
}

.services-list a:hover,
.services-list a.active {
    background: var(--primary);
    color: white;
}

.contact-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.contact-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.contact-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-widget .btn {
    width: 100%;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-page-content {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-200);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.1) 0%, rgba(237, 137, 54, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-600);
    margin: 0;
}

.mission-vision {
    background: var(--gray-100);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card h3 i {
    color: var(--accent);
}

.mv-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin: 0;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

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

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

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        display: none;
    }
    
    .hero-text {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-strip {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-grid,
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-single-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Mobilde topbar iletişim bilgileri görünsün */
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-left {
        width: 100%;
        font-size: 0.85rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }

    .top-bar-left span,
    .top-bar-left a {
        width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .top-bar-left span {
        grid-column: 1 / -1;
        opacity: 0.95;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }

    .top-bar-social{
        width: 100%;
        justify-content: center;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav > a,
    .main-nav > .nav-dropdown > a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1rem;
    }
    
    .main-nav > a::after,
    .main-nav > .nav-dropdown > a::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown > a {
        justify-content: flex-start;
        gap: 10px;
    }

    .nav-dropdown > a .dropdown-arrow {
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: var(--gray-100);
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .nav-dropdown.active > a .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 12px 30px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .features-strip {
        margin: -30px 15px 0;
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credit{
        width: 100%;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float a span,
    .call-float a span {
        display: none;
    }
    
    .whatsapp-float a,
    .call-float a {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-buttons {
        bottom: calc(22px + env(safe-area-inset-bottom));
    }
    
    .floating-buttons.left {
        left: 20px;
    }
    
    .floating-buttons.right {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ================================================
   COMPARISON SECTION
   ================================================ */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.comparison-table {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-weight: 700;
    padding: 20px;
}

.comparison-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: var(--gray-100);
}

.comparison-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-feature i {
    color: var(--primary);
    width: 20px;
}

.comparison-us {
    color: var(--success);
    font-weight: 500;
}

.comparison-others {
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .comparison-table { overflow: visible !important; box-shadow: none !important; background: transparent !important; }
    .comparison-header { display: none !important; }
    .comparison-row {
        display: block !important;
        grid-template-columns: none !important;
        min-width: 0 !important;
        background: #fff !important;
        border: 1px solid var(--gray-200) !important;
        border-radius: var(--radius-lg) !important;
        padding: 14px 14px !important;
        margin: 12px 0 !important;
        box-shadow: var(--shadow-sm) !important;
    }
    .comparison-feature { margin-bottom: 10px !important; }
    .comparison-us,
    .comparison-others {
        display: block !important;
        width: 100% !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
        background: var(--gray-100) !important;
        margin-bottom: 8px !important;
        line-height: 1.45 !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }
    .comparison-us::before,
    .comparison-others::before {
        display: block !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: .2px !important;
        margin-bottom: 4px !important;
    }
    .comparison-us::before { content: "Demirtaş Yönetim" !important; color: var(--primary) !important; }
    .comparison-others::before { content: "Diğer Firmalar" !important; color: var(--gray-700) !important; }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(237,137,54,.10) 0%, rgba(237,137,54,0) 42%),
        radial-gradient(circle at 88% 24%, rgba(26,54,93,.10) 0%, rgba(26,54,93,0) 45%),
        var(--lighter);
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.65) 100%);
    pointer-events: none;
}

.faq-section .container { position: relative; }

.faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(26,54,93,.10);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(237,137,54,.25);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 700;
    color: var(--gray-800);
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.86) 100%);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gray-500);
    transition: transform .18s ease, color .18s ease;
    flex: 0 0 auto;
}

.faq-item[open] {
    border-color: rgba(237,137,54,.35);
    box-shadow: var(--shadow-md);
}

.faq-item[open] summary {
    background: rgba(237,137,54,.08);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 18px 16px 18px;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .faq-item summary { padding: 14px 14px; font-size: 0.98rem; }
    .faq-answer { padding: 0 14px 14px 14px; }
}

/* === SSS (Kompakt) – Hakkımızda + Hizmet Detay altı === */
.faq-section.is-compact { padding: 55px 0; }
.faq-section.is-compact .section-header { margin-bottom: 22px; }
.faq-section.is-compact .section-header h2 { font-size: 1.9rem; margin-bottom: 8px; }
.faq-section.is-compact .section-header p { font-size: 0.98rem; }
.faq-section.is-compact .faq-list { max-width: 820px; }
.faq-section.is-compact .faq-item { margin-bottom: 12px; }
.faq-section.is-compact .faq-item summary { padding: 14px 16px; font-size: 0.98rem; }
.faq-section.is-compact .faq-answer { padding: 0 16px 14px 16px; font-size: 0.98rem; }
.faq-section.is-compact .btn { padding: 11px 18px; font-size: 0.95rem; }

@media (max-width: 768px) {
    .faq-section.is-compact { padding: 40px 0; }
    .faq-section.is-compact .section-header h2 { font-size: 1.55rem; }
    .faq-section.is-compact .faq-list { max-width: 100%; }
}

/* ================================================
   SERVICE CTA
   ================================================ */
.service-cta-box h4,
.service-cta-box p { color: #fff !important; opacity: 1 !important; }

/* ================================================
   DROPDOWN ACCESSIBILITY
   ================================================ */
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* ================================================
   HOME ORIGINAL CONTENT
   ================================================ */
.home-original-content { padding: 80px 0; background: #fff; }
.home-original-content .content-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: start; }
.home-original-content .content-text p { line-height: 1.8; margin: 0 0 14px; }
.home-original-content .content-text h3 { margin: 18px 0 10px; }
.home-original-content .content-list { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.home-original-content .content-note { margin-top: 14px; opacity: .9; }

.home-original-content .content-cards { display: grid; gap: 12px; }
.home-original-content .mini-card { border: 1px solid rgba(0,0,0,.08); border-radius: 16px; padding: 14px; background: #fafafa; }
.home-original-content .mini-card-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(16,42,103,.08); margin-bottom: 10px; }
.home-original-content .mini-card-title { font-weight: 700; margin-bottom: 6px; }
.home-original-content .mini-card-text { opacity: .85; font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 900px) {
    .home-original-content .content-grid { grid-template-columns: 1fr; }
}

/* ================================================
   REFERENCES SECTION
   ================================================ */
.references-section {
    padding: 90px 0;
    position: relative;
}

.references-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 300px at 20% 10%, rgba(26,54,93,.08), transparent 60%),
                radial-gradient(700px 280px at 80% 40%, rgba(44,82,130,.07), transparent 60%);
    pointer-events: none;
}

.references-section .container {
    position: relative;
    z-index: 1;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.reference-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid rgba(15,37,68,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.85);
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.reference-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
    border-color: rgba(26,54,93,.22);
}

.reference-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(26,54,93,.10);
    color: var(--primary);
    flex: 0 0 44px;
}

.reference-icon i {
    font-size: 18px;
}

.reference-name {
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-size: 15px;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .references-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .references-section { padding: 70px 0; }
    .references-grid { grid-template-columns: 1fr; }
    .reference-card { padding: 16px 14px; }
}