/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary: #ff2d16;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #0f172a;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;
    --card-foreground: #0f172a;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 5rem 0;
    
    /* Border radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.text-primary {
    color: var(--primary);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    background: transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #e02914;
    border-color: #e02914;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    border-color: #e2e8f0;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.btn .icon-left {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.btn .icon-right {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    height: 3rem;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(255, 45, 22, 0.05);
    color: var(--primary);
}

.dropdown-item:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.language-switcher:hover .language-menu,
.language-switcher.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.language-item:hover {
    background-color: rgba(255, 45, 22, 0.05);
    color: var(--primary);
}

.language-item .flag {
    font-size: 1rem;
}

/* Search Dropdown Styles */
.search-dropdown {
    position: relative;
    display: inline-block;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    background: var(--muted);
    color: var(--primary);
}

.search-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 350px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 400px;
    overflow: hidden;
}

.search-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 45, 22, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    outline: none;
}

.search-input::placeholder {
    color: var(--muted-foreground);
}

.search-submit {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.search-submit:hover {
    color: var(--primary);
    background: var(--muted);
}

.search-quick-results {
    max-height: 200px;
    overflow-y: auto;
}

.search-results-header {
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.search-results-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-results-list {
    padding: 0.5rem 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--foreground);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: var(--muted);
    border-left-color: var(--primary);
}

.search-result-icon {
    width: 2rem;
    height: 2rem;
    background: var(--muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-type {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-results-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
}

.search-view-all {
    width: 100%;
    background: var(--muted);
    border: none;
    color: var(--foreground);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-view-all:hover {
    background: var(--primary);
    color: white;
}

.search-hints {
    padding: 1rem;
    background: var(--muted/50);
}

.search-hint-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.search-hint-item:last-child {
    margin-bottom: 0;
}

.search-hint-item svg {
    color: var(--primary);
    opacity: 0.7;
}

.search-highlight {
    background-color: rgba(255, 45, 22, 0.2);
    color: var(--primary);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-dropdown-menu {
        width: 300px;
        right: -50px;
    }
}

@media (max-width: 480px) {
    .search-dropdown-menu {
        width: 280px;
        right: -100px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
}

.mobile-menu.hide {
    opacity: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-menu.show .mobile-nav {
    transform: translateY(0);
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--radius);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background-color: rgba(255, 45, 22, 0.1);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    margin-bottom: 1rem;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
    color: var(--primary);
    background-color: rgba(255, 45, 22, 0.1);
}

.mobile-dropdown-toggle .dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu .mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-language-switcher h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-language-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-language-item:hover,
.mobile-language-item.active {
    background-color: rgba(255, 45, 22, 0.2);
    color: var(--primary);
}

.mobile-language-item .flag {
    font-size: 1.25rem;
}

.mobile-language-item .name {
    font-weight: 500;
}

/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: rgba(255, 45, 22, 0.2);
    color: var(--primary);
}

/* Anasayfa için main-content sıfırlaması */
.home .main-content {
    padding-top: 0;
    margin-top: 0;
}

/* Main Banner (Anasayfa Hero) Section */
.main-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Homepage Banner - Ana sayfa hero bölümü */
.homepage-banner {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    text-align: center !important;
}

.homepage-banner .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.homepage-banner .hero-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.homepage-banner .hero-content {
    width: 100% !important;
    max-width: 64rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center; /* Devralınan herhangi bir hizalamayı kırmak için */
}

/* Secondary Hero for other pages */
.hero-secondary {
    min-height: 70vh;
}

.hero-secondary .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-secondary .hero-description {
    font-size: 1.125rem;
    max-width: 600px;
}

.hero-secondary .floating-stats {
    bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-secondary {
        min-height: 60vh;
    }
    
    .hero-secondary .hero-title {
        font-size: 2rem;
    }
    
    .hero-secondary .hero-description {
        font-size: 1rem;
    }
}

/* Hero Background - Dinamik olarak PHP tarafından oluşturulur */
.hero-background {
    position: absolute;
    inset: 0;
    transition: var(--transition);
    /* Background stilleri PHP helper tarafından inline olarak eklenir */
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlays - Dinamik olarak PHP helper tarafından oluşturulur */
.hero-overlays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.overlay-1, .overlay-2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Background dinamik olarak PHP helper tarafından inline style ile eklenir */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    /* Overlay stilleri PHP helper tarafından inline olarak eklenir */
    /* Fallback overlay - eğer PHP helper çalışmazsa */
    background: rgba(0, 0, 0, 0.7);
}

/* Hero-controls kaldırıldı - admin panelden kontrol edilecek */

.hero-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.pattern-circle {
    position: absolute;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.pattern-1 {
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    border-color: rgba(255, 45, 22, 0.3);
}

.pattern-2 {
    bottom: 5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    border-color: rgba(255, 45, 22, 0.2);
}

.pattern-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    border-color: rgba(255, 45, 22, 0.1);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.floating-1 {
    top: 5rem;
    right: 5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(255, 45, 22, 0.3) 0%, rgba(255, 45, 22, 0.1) 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.floating-2 {
    bottom: 8rem;
    left: 4rem;
    width: 14rem;
    height: 14rem;
    background: linear-gradient(45deg, rgba(255, 45, 22, 0.25) 0%, transparent 100%);
    filter: blur(3rem);
}

.floating-3 {
    top: 50%;
    right: 25%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 45, 22, 0.2);
    filter: blur(2rem);
}

.floating-4 {
    top: 25%;
    left: 33.33%;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(255, 45, 22, 0.15) 0%, transparent 100%);
    filter: blur(1rem);
    animation: pulse 3s infinite;
}

.architectural-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.arch-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 22, 0.4) 50%, transparent 100%);
}

.arch-h1 {
    top: 25%;
    left: 0;
    right: 0;
    height: 1px;
}

.arch-h2 {
    top: 75%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 22, 0.3) 50%, transparent 100%);
}

.arch-v1 {
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 45, 22, 0.2) 50%, transparent 100%);
}

.arch-v2 {
    top: 0;
    bottom: 0;
    right: 25%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 45, 22, 0.2) 50%, transparent 100%);
}

.arch-d1 {
    top: 33.33%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 22, 0.15) 50%, transparent 100%);
    transform: rotate(12deg);
}

.arch-d1 {
    top: 33.33%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 22, 0.15) 50%, transparent 100%);
    transform: rotate(12deg);
}

.arch-d2 {
    top: 66.67%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 22, 0.15) 50%, transparent 100%);
    transform: rotate(-12deg);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 64rem;
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Hero Breadcrumb */
.hero-breadcrumb {
    margin-bottom: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-breadcrumb .breadcrumb-link,
.hero-breadcrumb .breadcrumb-current,
.hero-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
}

.hero-breadcrumb .breadcrumb-link:hover {
    color: white;
}

.hero-breadcrumb .breadcrumb-current {
    color: white;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-separator {
    margin: 0 0.25rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 45, 22, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 45, 22, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.floating-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 45, 22, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--muted);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 45, 22, 0.2);
    transform: translateY(-2px);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 45, 22, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: rgba(255, 45, 22, 0.2);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background-color: rgba(241, 245, 249, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 45, 22, 0.2);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-btn {
    width: 100%;
    background-color: transparent;
    border-color: var(--border);
    color: var(--foreground);
}

.product-btn:hover {
    background-color: rgba(255, 45, 22, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.experience-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.experience-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-content .section-badge {
    text-align: left;
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.8;
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.footer .contact-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-extra {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #64748b;
}

.footer-extra p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    
    .floating-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        padding: 4rem 0 6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pattern-1,
    .pattern-2,
    .pattern-3 {
        display: none;
    }
    
    .floating-1,
    .floating-2,
    .floating-3,
    .floating-4 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* References Carousel Styles */
.references {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.references-carousel {
    overflow: hidden;
    position: relative;
    margin: 3rem 0;
}

.references-track {
    display: flex;
    animation: scroll-references 30s linear infinite;
    gap: 2rem;
}

.reference-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-2px);
}

.reference-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f1f5f9;
}

.reference-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reference-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff2d16, #e02914);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.reference-info {
    flex: 1;
}

.reference-company {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.reference-location {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.reference-project {
    font-size: 0.75rem;
    color: #ff2d16;
    font-weight: 500;
}

@keyframes scroll-references {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.references-track:hover {
    animation-play-state: paused;
}

/* References CTA Button Styles */
.references-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.btn-references-view {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff2d16 0%, #e02914 100%);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-references-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-references-view:hover::before {
    left: 100%;
}

.btn-references-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 22, 0.4);
    background: linear-gradient(135deg, #e02914 0%, #dc2626 100%);
}

.btn-references-view:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 45, 22, 0.3);
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-references-view:hover .btn-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .reference-item {
        min-width: 250px;
        padding: 1rem;
    }
    
    .reference-logo {
        width: 50px;
        height: 50px;
    }
    
    .btn-references-view {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .references-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

/* Standardized Hero Styles - Tüm hero bölümleri için ortak stiller */
.hero,
.hero-secondary,
.main-banner,
.homepage-banner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.hero .container,
.hero-secondary .container,
.main-banner .container,
.homepage-banner .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero .hero-container,
.hero-secondary .hero-container,
.main-banner .hero-container,
.homepage-banner .hero-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
}

.hero .hero-content,
.hero-secondary .hero-content,
.main-banner .hero-content,
.homepage-banner .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 64rem !important;
    margin: 0 auto !important;
}

.hero .hero-title,
.hero .hero-description,
.hero .hero-buttons,
.hero .hero-badge,
.hero-secondary .hero-title,
.hero-secondary .hero-description,
.hero-secondary .hero-buttons,
.hero-secondary .hero-badge,
.main-banner .hero-title,
.main-banner .hero-description,
.main-banner .hero-buttons,
.main-banner .hero-badge,
.homepage-banner .hero-title,
.homepage-banner .hero-description,
.homepage-banner .hero-buttons,
.homepage-banner .hero-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero .hero-buttons,
.hero-secondary .hero-buttons,
.main-banner .hero-buttons,
.homepage-banner .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

/* Values Section Styles */
.values-section {
    padding: 5rem 0;
    background-color: rgba(241, 245, 249, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(255, 45, 22, 0.2);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 45, 22, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Team Section Styles */
.team-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.team-stat:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.team-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-stat .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Responsive Styles for Values and Team Sections */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-stats {
        grid-template-columns: 1fr;
    }
}
