/* ===============================================
   Ankara İstinat Duvarı - Premium Tasarım
   Klasik, zarif ve profesyonel
   =============================================== */

:root {
    --primary: #1a5f4a;
    --primary-hover: #134839;
    --primary-light: #e8f0ed;
    --accent: #c9a962;
    --accent-hover: #b8943d;
    --text: #1a1a1a;
    --text-muted: #5a6068;
    --border: #e2e5e9;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-cream: #fdfcfa;
    --white: #ffffff;
    --dark: #0f1419;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-hover);
}

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

/* ===============================================
   Premium Header & Navigation
   =============================================== */
.site-header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.header-top {
    background: var(--dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.header-contact .contact-item:hover {
    color: var(--accent);
}

.header-contact .contact-item i {
    font-size: 12px;
    color: var(--accent);
}

.header-contact .divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    margin: 0 12px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    border-radius: 50%;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    position: relative;
}

/* Brand / Logo */
.nav-brand {
    text-decoration: none;
    display: block;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-menu-item {
    position: relative;
}

.nav-menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--radius);
    position: relative;
}

.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu-link:hover {
    color: var(--primary);
}

.nav-menu-link:hover::after {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 10px;
    transition: var(--transition);
    margin-left: 2px;
}

.nav-menu-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    list-style: none;
    margin: 0;
    border: 1px solid var(--border);
    z-index: 1070;
}

.nav-dropdown.dropdown-menu {
    display: none;
}

.nav-dropdown.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 16px;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dropdown-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 14px;
    transition: var(--transition);
}

.nav-dropdown-link:hover .dropdown-icon {
    background: var(--primary);
    color: var(--white);
}

.dropdown-text {
    font-size: 14px;
    font-weight: 500;
}

.nav-dropdown-link.view-all {
    justify-content: space-between;
    margin: 8px 12px 4px;
    padding: 12px 16px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
}

.nav-dropdown-link.view-all:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-dropdown-link.view-all i {
    font-size: 12px;
}

/* CTA Button */
.nav-cta {
    margin-left: 16px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 95, 74, 0.3);
}

.cta-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 14px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.cta-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive Navigation */
@media (max-width: 1199px) {
    .nav-menu-link {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .cta-button {
        padding: 8px 14px;
    }
    
    .cta-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        z-index: 1060;
    }
    
    .nav-menu-wrapper:not(.show) {
        display: none;
    }
    
    .nav-menu-wrapper.show {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-menu-link {
        padding: 14px 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu-link::after {
        display: none;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: var(--bg-alt);
        display: none;
    }
    
    .nav-dropdown.show {
        display: block;
    }
    
    .nav-cta {
        margin: 20px 0 0;
    }
    
    .cta-button {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .header-contact .contact-item span {
        display: none;
    }
    
    .header-contact .contact-item i {
        font-size: 16px;
    }
    
    .header-contact .divider {
        margin: 0 8px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-tagline {
        font-size: 9px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* Desktop navigation visibility fix */
@media (min-width: 992px) {
    .nav-menu-wrapper {
        display: flex !important;
    }
}

/* ===============================================
   Hero - Sade
   =============================================== */
.hero-section {
    position: relative;
    background: url('/images/ankara-istinat-duvari-golbasi-incek-hero.jpg') center/cover no-repeat;
    padding: var(--space-xl) 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-family: var(--font-heading);
}

/* Vurgulu metin - beyaz arka planda primary, koyu arka planda beyaz */
.text-gradient {
    color: var(--primary);
    font-weight: 600;
}

.hero-content .text-gradient {
    color: var(--white);
}

.hero-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
}

.feature-item i {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius);
}

.hero-buttons .btn-primary {
    background: var(--primary);
    border: none;
    color: var(--white);
}

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

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
}

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

.hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

/* ===============================================
   Stats - Sade
   =============================================== */
.stats-section {
    background: var(--primary);
    padding: var(--space-lg) 0;
}

.stat-box {
    text-align: center;
    padding: var(--space-md);
    color: var(--white);
}

.stat-box .stat-icon {
    font-size: 24px;
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--white);
}

/* ===============================================
   Sections - Sade
   =============================================== */
section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}


.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================
   Services - Sade kartlar
   =============================================== */
.services-section {
    background: var(--bg-alt);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 20px;
    color: var(--primary);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ===============================================
   Why Us
   =============================================== */
.why-us-section {
    background: var(--bg);
}

.why-us-image img {
    border-radius: var(--radius);
}

.experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.experience-badge .number {
    font-size: 1.75rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 12px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===============================================
   Projects - Sade
   =============================================== */
.projects-section {
    background: var(--bg);
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--primary);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.project-content {
    padding: var(--space-md);
}

.project-location {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.project-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.project-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===============================================
   Gallery
   =============================================== */
.gallery-section {
    background: var(--bg-alt);
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 95, 74, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===============================================
   CTA
   =============================================== */
.cta-section {
    background: var(--bg-alt);
    padding: var(--space-xl) 0;
}

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
}

.cta-content {
    padding-right: 24px;
}

.cta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.cta-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-phone-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    color: var(--text);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.cta-phone-btn:hover {
    background: var(--bg-alt);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-phone-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
}

.cta-phone-info {
    display: flex;
    flex-direction: column;
}

.cta-phone-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.cta-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-whatsapp-btn:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .cta-card {
        padding: 32px;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 28px;
    }
}

@media (max-width: 575px) {
    .cta-card {
        padding: 28px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* ===============================================
   FAQ
   =============================================== */
.faq-section {
    background: var(--bg-alt);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
}

.accordion-button {
    font-weight: 600;
    padding: var(--space-md);
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: var(--space-md);
}

/* ===============================================
   Areas
   =============================================== */
.areas-section {
    background: var(--bg);
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.area-card i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.area-card:hover i {
    color: var(--white);
}

.priority-areas {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.area-card.priority {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.area-card.priority i {
    color: var(--white);
}

/* ===============================================
   Contact
   =============================================== */
.contact-form-section {
    background: var(--bg-alt);
}

.contact-info-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: var(--space-lg);
    color: var(--white);
}

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.2);
}

/* ===============================================
   Footer
   =============================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-col {
    margin-bottom: 32px;
}

.widget-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.footer-about-text {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

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

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.fc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
}

.fc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fc-info a,
.fc-info span {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.fc-info a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-copyright a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-admin-link {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
}

.footer-admin-link:hover {
    color: rgba(255,255,255,0.6);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 48px 0 24px;
    }
}

@media (max-width: 575px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===============================================
   Buttons
   =============================================== */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border: none;
}

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

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

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

.btn-secondary {
    background: var(--text);
    border: none;
}

/* ===============================================
   Page Header
   =============================================== */
.page-header {
    background: var(--primary);
    padding: var(--space-xl) 0;
    text-align: center;
}

/* Page header'daki butonlar - teal arka planda görünür olmalı */
.page-header .btn-light {
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 600;
}
.page-header .btn-light:hover {
    background: var(--bg-alt);
    color: var(--primary-hover);
}

.page-title {
    color: var(--white);
    font-size: 2rem;
    font-family: var(--font-heading);
}

.breadcrumb-item a,
.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===============================================
   Float Buttons
   =============================================== */
.whatsapp-float,
.phone-float {
    position: fixed;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.whatsapp-float {
    bottom: 90px;
    right: 24px;
    background: #25D366;
}

.phone-float {
    bottom: 24px;
    right: 24px;
    background: var(--primary);
}

/* ===============================================
   SEO Content
   =============================================== */
.seo-content-section {
    background: var(--bg-alt);
}

.seo-content {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

/* ===============================================
   Additional Page Sections
   =============================================== */
.about-section,
.services-page-section,
.hizmet-detay-section {
    background: var(--bg);
}

/* ===============================================
   Responsive - General
   =============================================== */
@media (max-width: 991px) {
    section {
        padding: var(--space-lg) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-box {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media print {
    .site-header,
    .main-nav,
    .whatsapp-float,
    .phone-float,
    .site-footer {
        display: none !important;
    }
}
