/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #ffd700;
    --secondary-dark: #ffb300;
    --accent-color: #ffed4e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #999999;
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d2d2d;
    --border-color: #333333;
    --shadow-sm: 0 1px 2px 0 rgb(255 215 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(255 215 0 / 0.2);
    --shadow-lg: 0 10px 15px -3px rgb(255 215 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(255 215 0 / 0.4);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    --gradient-accent: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Global Image Auto-Sizing - Otomatik Görsel Boyutlandırma */
img {
    max-width: 100%;
    height: auto;
}

/* Görsel Boyutlandırma Sınıfları */
.img-auto {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.img-scale-down {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

/* En-Boy Oranı Koruma */
.preserve-aspect {
    object-fit: contain !important;
    max-width: 100%;
    max-height: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    height: 110px;
}

.navbar {
    padding: 0.4rem 0;
}

.nav-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    z-index: 1001;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: #ffffff;
    transform: scale(1.05);
    text-decoration: none;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo i {
    margin-right: 0.75rem;
    font-size: 2.2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 100px;
    width: auto;
    margin-right: 0.75rem;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Mobile: enlarge logo for better visibility */
@media (max-width: 768px) {
    .logo-image {
        height: 90px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Ensure consistent header height and section scroll offset */
section {
    scroll-margin-top: 130px; /* Header height + extra space */
    scroll-padding-top: 130px;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem 4rem;
    width: 100vw;
    max-width: 100%;
    margin: 110px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    color: white;
    z-index: 2;
    max-width: 550px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stat {
    text-align: center;
    padding: 0.5rem 1rem;
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat p {
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.9;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 2;
    height: 600px;
    animation: fadeInUp 1s ease 1s both;
}

.floating-card {
    position: absolute;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    animation: float 6s ease-in-out infinite;
    min-width: 140px;
    max-width: 140px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.floating-card span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.card-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
    z-index: 3;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
    z-index: 4;
}

.card-3 {
    bottom: 10%;
    right: 25%;
    animation-delay: 4s;
    z-index: 5;
}

.card-4 {
    top: 20%;
    left: 5%;
    animation-delay: 1s;
    z-index: 6;
}

.card-5 {
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
    z-index: 7;
}

.card-6 {
    top: 65%;
    left: 35%;
    animation-delay: 5s;
    z-index: 8;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 50%;
    animation-delay: 1.5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.electric-circle {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.electric-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.electric-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.electric-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

/* Enhanced Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: floatSlow 8s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.icon-1 {
    top: 15%;
    right: 45%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 45%;
    left: 35%;
    animation-delay: 3s;
}

.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 4.5s;
}

.icon-5 {
    top: 20%;
    right: 35%;
    animation-delay: 6s;
}

/* Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.7;
    animation: particleFloat 12s linear infinite;
    box-shadow: 0 0 10px var(--secondary-color);
}

.particle-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.particle-2 {
    top: 40%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle-3 {
    top: 60%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle-4 {
    top: 80%;
    left: 35%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle-5 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle-6 {
    top: 50%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle-7 {
    top: 70%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 15s;
}

.particle-8 {
    top: 10%;
    right: 35%;
    animation-delay: 7s;
    animation-duration: 9s;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-primary);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    cursor: default;
}

.gallery-trigger {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    user-select: none;
    position: relative;
    z-index: 10;
    pointer-events: all;
    min-height: 48px;
    width: auto;
}

.gallery-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.gallery-trigger:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.gallery-trigger * {
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-primary);
    width: 100%;
}

/* About Layout - Side by Side */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-left {
    padding-right: 2rem;
}

.about-text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.about-text-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


/* About Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.about-stats .stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.about-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: var(--secondary-color);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
    z-index: 2;
}

/* Contact Section - Professional Redesign */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--secondary-color);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-title i {
    font-size: 1.3rem;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    flex: 1;
}

.contact-detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

a.contact-value:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Working Hours */
.working-hours {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: auto; /* Alt kısma yapıştır */
}

.working-hours h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.day {
    color: var(--text-primary);
    font-weight: 500;
}

.time {
    color: var(--secondary-color);
    font-weight: 600;
}

.emergency-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.emergency-note i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.emergency-note span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modern Contact Form */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1; /* Form alanını genişlet */
    height: 100%;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 2.5rem;
    background: rgba(13, 13, 13, 0.9); /* Daha koyu arka plan */
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffffff; /* Parlak beyaz metin */
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    backdrop-filter: blur(5px);
}

/* Placeholder renkleri */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(8px);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(5px);
}

.form-group select option {
    background-color: #1a1a1a !important; /* Koyu gri arka plan */
    color: #ffffff !important; /* Kesinlikle beyaz metin */
    padding: 0.8rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-weight: 500;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Select dropdown için alternatif stil */
.form-group select:focus option {
    background-color: #1a1a1a !important;
    color: white !important;
}

.form-group select option:disabled {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.3rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group input:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon,
.form-group select:focus ~ .form-icon {
    color: var(--secondary-color);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-note i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Mobile Quick Contact Buttons */
.mobile-quick-contact {
    display: none;
}

@media (max-width: 768px) {
    .mobile-quick-contact {
        display: flex;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-contact-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.8rem;
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .quick-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    
    .quick-contact-btn i {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--text-secondary);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-modal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.gallery-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideIconPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translateY(-5px);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .gallery-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
        border-radius: 12px;
    }
    
    .gallery-header {
        padding: 1rem;
    }
    
    .gallery-header h3 {
        font-size: 1.5rem;
    }
    
    .gallery-pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .page-number {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 30px;
    }
    
    .page-info {
        font-size: 0.8rem;
    }
    
    
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    
    .gallery-content {
        padding: 1rem;
        max-height: calc(85vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
        padding: 0;
    }
    
    .gallery-item {
        border-radius: 8px;
        aspect-ratio: 4/3;
        max-width: 100%;
        height: auto;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Mobilde hover efektlerini devre dışı bırak */
    .gallery-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .gallery-item:hover img {
        transform: none;
        filter: none;
    }
}

@media (max-width: 480px) {
    .gallery-modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 90vh;
        border-radius: 8px;
    }
    
    .gallery-header {
        padding: 0.8rem;
    }
    
    .gallery-header h3 {
        font-size: 1rem;
    }
    
    .gallery-close {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
    
    
    .gallery-content {
        padding: 0.8rem;
        max-height: calc(90vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 55vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.6rem;
        min-height: auto;
        padding: 0;
    }
    
    .gallery-item {
        border-radius: 6px;
        aspect-ratio: 4/3;
        max-width: 100%;
        height: auto;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 6px;
    }
    
    /* Küçük mobilde hover efektlerini devre dışı bırak */
    .gallery-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .gallery-item:hover img {
        transform: none;
        filter: none;
    }
    
    .image-viewer-content {
        padding: 1rem;
    }
    
    .image-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    #viewer-image {
        max-width: 95%;
        max-height: 80%;
        border-radius: 6px;
    }
    
    .image-nav {
        padding: 0 1rem;
    }
    
    .image-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.gallery-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.gallery-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.gallery-content {
    padding: 2rem;
    background: var(--bg-primary);
    min-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    scroll-behavior: smooth;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
    min-height: auto;
    width: 100%;
    flex: 1;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-right: 8px;
    scroll-behavior: smooth;
    position: relative;
}

/* Pagination Styles */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.pagination-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 35px;
    text-align: center;
    font-size: 0.9rem;
}

.page-number:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.page-number.active {
    background: var(--gradient-secondary);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    font-weight: 700;
}

.page-info {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}
}


.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2d2d2d;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Varsayılan: Görseli kırparak doldur */
    object-position: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Görselin tamamını göster, boşlukları koru */
.gallery-item.fit-contain img {
    object-fit: contain;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.8) 100%);
}

/* Görseli ortala ve orijinal boyutunu koru */
.gallery-item.fit-none img {
    object-fit: none;
}

/* Görseli yatay/dikey sığdır */
.gallery-item.fit-scale img {
    object-fit: scale-down;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
    color: var(--text-secondary);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmerPlaceholder 2s infinite;
}

@keyframes shimmerPlaceholder {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gallery-placeholder:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    transform: scale(1.02);
}

.gallery-placeholder-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.gallery-placeholder-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.gallery-placeholder-subtext {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    text-align: center;
    line-height: 1.2;
    padding: 0 0.5rem;
}

/* Image Viewer Modal */
.image-viewer {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.image-viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.image-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

#viewer-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    pointer-events: none;
}

.image-nav button {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-nav button:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

/* Google Maps Section */
.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.map-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.map-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.map-details {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-details i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.map-details h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-details p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    color: #000;
}

.map-button i {
    font-size: 1rem;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil Hover Animasyonları */
@keyframes mobileFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
        border-radius: 50%;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.1);
        opacity: 0.8;
        border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    }
    50% {
        transform: translateY(-20px) translateX(5px) scale(1.2);
        opacity: 1;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    75% {
        transform: translateY(-10px) translateX(-5px) scale(1.05);
        opacity: 0.7;
        border-radius: 35% 65% 65% 35% / 50% 50% 50% 50%;
    }
}

@keyframes mobileFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    }
    33% {
        transform: translateY(-25px) rotate(120deg) scale(1.2);
        opacity: 0.7;
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        background: linear-gradient(225deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    }
    66% {
        transform: translateY(-15px) rotate(240deg) scale(1.1);
        opacity: 0.9;
        border-radius: 60% 40% 30% 70% / 40% 60% 40% 60%;
        background: linear-gradient(315deg, rgba(255, 215, 0, 0.18), rgba(255, 215, 0, 0.08));
    }
}

@keyframes mobileGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        transform: scale(1) rotate(0deg);
        background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
    }
    25% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
        transform: scale(1.05) rotate(45deg);
        background: linear-gradient(180deg, var(--secondary-color), #ffed4e);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.3);
        transform: scale(1.1) rotate(90deg);
        background: linear-gradient(225deg, var(--secondary-color), #ffed4e);
    }
    75% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
        transform: scale(1.05) rotate(135deg);
        background: linear-gradient(270deg, var(--secondary-color), #ffed4e);
    }
}

/* Masaüstü görünüm - 1201px ve üstü */
@media (min-width: 1201px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    /* BÜYÜK MASAÜSTÜ İÇİN İLETİŞİM - Sol: Bilgiler, Sağ: Form */
    .contact .contact-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        align-items: stretch !important;
        grid-auto-rows: 1fr !important;
    }
    
    .contact .contact-left {
        display: flex !important;
        flex-direction: column !important;
        order: 1 !important;
    }
    
    .contact .contact-right {
        display: flex !important;
        flex-direction: column !important;
        order: 2 !important;
        width: auto !important;
    }
    
    .contact .contact-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .contact .mobile-quick-contact {
        display: none !important;
    }
}

/* Masaüstünde mobil elementleri gizle */
@media (min-width: 769px) {
    .mobile-center-hover {
        display: none;
    }
    
    .hero-visual::before,
    .hero-visual::after,
    .hero-visual .hover-element-1,
    .hero-visual .hover-element-2,
    .hero-visual .hover-element-3 {
        display: none;
    }
    
    /* WEB GÖRÜNÜMÜ - Geniş ekranlarda iletişim yan yana */
    .contact .contact-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
        align-items: stretch !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        grid-auto-rows: 1fr !important;
    }
    
    .contact .contact-left {
        display: flex !important;
        flex-direction: column !important;
        order: 1 !important;
    }
    
    .contact .contact-right {
        display: flex !important;
        flex-direction: column !important;
        order: 2 !important;
        width: auto !important;
    }
    
    .contact .contact-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Web görünümünde mobil butonları gizle */
    .contact .mobile-quick-contact {
        display: none !important;
    }
}

/* Desktop ve tablet için floating cards görünür - EN YÜKSEK ÖNCELİK */
@media (min-width: 769px) {
    .hero-visual {
        display: block !important;
        position: relative !important;
        height: 600px !important;
        z-index: 2 !important;
    }
    
    .floating-card {
        display: flex !important;
        position: absolute !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .card-1, .card-2, .card-3, .card-4, .card-5, .card-6 {
        display: flex !important;
        position: absolute !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-shape {
        display: block !important;
        position: absolute !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Mobilde kesinlikle görünsün */
@media (max-width: 768px) {
    /* Container reset için */
    .about .container {
        padding: 0 !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .mobile-center-hover {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-visual::before,
    .hero-visual::after {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-visual .hover-element-1,
    .hero-visual .hover-element-2,
    .hero-visual .hover-element-3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Tablet görünüm - 768px ile 1200px arası */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 6rem 1rem 4rem;
        width: 100%;
        min-height: 90vh;
    }
    
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    /* TABLET İÇİN İLETİŞİM - Sol: Bilgiler, Sağ: Form */
    .contact .contact-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        align-items: stretch !important;
        margin: 0 auto !important;
        grid-auto-rows: 1fr !important;
    }
    
    .contact .contact-left {
        display: flex !important;
        flex-direction: column !important;
        order: 1 !important;
    }
    
    .contact .contact-right {
        display: flex !important;
        flex-direction: column !important;
        order: 2 !important;
        width: auto !important;
    }
    
    .contact .contact-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .contact .mobile-quick-contact {
        display: none !important;
    }
}

/* Mobil görünüm - 768px ve altı */
@media (max-width: 768px) {
    /* Mobile logo and header sizing overrides */
    .logo-image {
        height: 120px;
    }
    .header {
        height: 130px;
    }
    .navbar {
        padding: 0.3rem 0;
    }
    section {
        scroll-margin-top: 150px;
        scroll-padding-top: 150px;
    }
    .hero {
        margin: 130px 0 0;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 6rem 0 2rem;
        border: none;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--bg-secondary);
        color: var(--secondary-color);
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 2rem 1rem 2rem; /* Üst padding azaltıldı */
        min-height: 85vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-bg-pattern {
        height: 60%; /* Mobilde yüksekliği %60'a düşür */
    }
    
    /* Hero alt şimşek sembolü kaldırıldı - hover alanı genişletildi */
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: 0;
        z-index: 2;
        position: relative;
        margin-top: 0rem; /* Yukarı alındı */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
        padding: 1rem;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    
    .stat-label {
        font-size: 0.85rem;
        color: var(--text-primary);
        opacity: 0.9;
    }
    
    .hero-visual {
        height: 300px; /* Yükseklik küçültüldü */
        margin-top: 0.5rem; /* Margin daha da azaltıldı */
        margin-bottom: 1rem; /* Alt margin eklendi */
        display: flex; /* Mobilde görünür yap */
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobil hover elementleri kaldırıldı - daha fazla alan için */
    
    /* Ek hover elementleri kaldırıldı */
    
    /* Merkez fa-bolt ikonu kaldırıldı - daha fazla floating card alanı için */
    }
    
    .floating-card {
        display: none !important; /* Mobilde floating cards'ı kesinlikle gizle */
    }
    
    .card-1, .card-2, .card-3, .card-4, .card-5, .card-6 {
        display: none !important; /* Mobilde tüm floating cards'ı gizle */
    }
    
    .hero-shape {
        display: none; /* Mobilde shapes'leri gizle */
    }
    
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: none;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-wrapper {
        display: block !important;
        padding: 0 1rem !important;
    }
    
    .about-left {
        padding-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .about-text-content h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-text-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-description {
        text-align: center;
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .about-highlights {
        margin-top: 2rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
        text-align: left;
    }
    
    .highlight-item i {
        font-size: 1.3rem;
    }
    
    .highlight-item h4 {
        font-size: 1rem;
    }
    
    /* Mobilde sağ tarafı (istatistikler ve rozetler) gizle */
    .about-right {
        display: none !important;
    }
    
    .about-stats {
        display: none !important;
    }
    
    .about-features {
        display: none !important;
    }
    
    .about-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 2rem auto !important;
    }
    
    .about-text h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .about-text p {
        font-size: 1.1rem;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .image-slider {
        width: 280px;
        height: 280px;
        border-radius: 24px;
        margin: 0 auto;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
        border-radius: 24px;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
    
    .values {
        padding: 4rem 0;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .value-item {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    .sectors {
        padding: 4rem 0;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .sector-item {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .sector-item i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .sector-item h4 {
        font-size: 1rem;
    }
    
    .references {
        padding: 4rem 0;
    }
    
    .references-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .reference-category {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .reference-category h3 {
        font-size: 1.2rem;
    }
    
    .reference-list {
        gap: 0.4rem;
    }
    
    .reference-list span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 16px;
    }
    
    /* İletişim bölümü mobil tam düzenleme */
    .contact {
        padding: 3rem 1rem !important;
    }
    
    .contact-header {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-header h2 {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-wrapper {
        display: block !important;
        margin: 0 !important;
    }
    
    /* Mobilde sol tarafı gizle */
    .contact-left {
        display: none !important;
    }
    
    .contact-right {
        width: 100% !important;
    }
    
    .contact-card {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        height: auto !important;
        min-height: unset !important;
    }
    
    .contact-card-title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        gap: 0.5rem !important;
    }
    
    /* Mobil hızlı iletişim butonları */
    .mobile-quick-contact {
        display: flex !important;
        gap: 0.6rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .quick-contact-btn {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        padding: 0.7rem !important;
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
        color: var(--primary-color) !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
    }
    
    /* Form düzenlemeleri */
    .contact-form-modern {
        gap: 0.8rem !important;
    }
    
    .form-row {
        display: block !important;
    }
    
    .form-group {
        margin-bottom: 0.8rem !important;
    }
    
    .form-group label {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem !important;
        padding-right: 2rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    .form-group textarea {
        min-height: 70px !important;
    }
    
    .form-icon {
        right: 0.6rem !important;
        top: 1.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .form-footer {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .form-note {
        font-size: 0.75rem !important;
        justify-content: center !important;
    }
    
    .submit-btn {
        width: 100% !important;
        padding: 0.8rem !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .contact-form button {
        padding: 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Container reset için küçük mobil */
    .about .container {
        padding: 0 !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    body {
        font-size: 14px;
    }
    
    .header {
        min-height: 60px;
    }
    
    .nav-container {
        min-height: 60px;
        padding: 0 0.75rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero {
        padding: 3rem 0.75rem 2rem; /* Üst padding azaltıldı */
        min-height: 85vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
        position: relative;
    }
    
    /* Alt taraftaki şimşek sembolü kaldırıldı - hover alanı genişletildi */
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        max-width: 100%;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 2rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 2rem 0;
        width: 100%;
    }
    
    .stat-item {
        padding: 0.8rem 0.3rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        display: block;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .hero-visual {
        height: 150px;
        margin-top: 1rem;
        display: none; /* Küçük mobilde floating cards'ları gizle */
    }
    
    .floating-card {
        display: none !important; /* Küçük mobilde floating cards'ı kesinlikle gizle */
    }
    
    .card-1, .card-2, .card-3, .card-4, .card-5, .card-6 {
        display: none !important; /* Küçük mobilde tüm floating cards'ı gizle */
    }
    
    .hero-shape {
        display: none; /* Küçük mobilde shapes'leri gizle */
    }
    
    
    .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: none;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .section-title::after {
        width: 40px;
        height: 2px;
        bottom: -0.5rem;
    }
    
    .services {
        padding: 2.5rem 0;
    }
    
    .services-grid {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .gallery-trigger {
        margin-top: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 6px;
        cursor: pointer;
        user-select: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about {
        padding: 2.5rem 0;
    }
    
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem;
        padding: 0 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    .about-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .about-text h2::after {
        width: 40px;
        height: 2px;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem auto !important;
        padding: 0 !important;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .image-slider {
        width: 200px;
        height: 200px;
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .stats {
        gap: 0.8rem;
    }
    
    .stat {
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }
    
    .stat h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .value-item {
        padding: 1.2rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.3rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sector-item {
        padding: 1.2rem 0.8rem;
    }
    
    .sector-item i {
        font-size: 2rem;
    }
    
    .sector-item h4 {
        font-size: 0.9rem;
    }
    
    .reference-category {
        padding: 1.2rem;
    }
    
    .reference-category h3 {
        font-size: 1.1rem;
    }
    
    .reference-category p {
        font-size: 0.9rem;
    }
    
    .reference-list span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        align-items: flex-start;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .contact-form button {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .map-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .map-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .map-section h3::after {
        width: 40px;
        height: 2px;
    }
    
    .map-container {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .map-details {
        gap: 0.8rem;
        text-align: center;
    }
    
    .map-details h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .map-details p {
        font-size: 0.8rem;
    }
    
    .map-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .map-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 8px;
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.9rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* WhatsApp Button - Küçük Mobil */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        box-shadow: 0 2px 15px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button {
        min-height: 48px;
    }
    
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card {
        cursor: default;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
        animation: mobileWave 3s ease-in-out infinite;
        z-index: 1;
    }
    
    .service-card:active {
        animation: mobileTouchPulse 0.3s ease;
    }
    
    .value-item,
    .sector-item,
    .reference-category {
        cursor: default;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        min-height: 48px;
    }
    
    /* Mobil touch hover bubble efekti */
    .service-card .touch-bubble,
    .value-item .touch-bubble,
    .sector-item .touch-bubble {
        position: absolute;
        width: 20px;
        height: 20px;
        background: rgba(255, 215, 0, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10;
        animation: mobileBubble 1.5s ease-out;
    }
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #000000;
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Sectors Section */
.sectors {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.sector-item {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-item:hover::before {
    transform: scaleX(1);
}

.sector-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.sector-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.sector-item:hover i {
    transform: scale(1.1);
}

.sector-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* References Section - Logo Slider */
.references {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
}

/* Logo Slider Container */
.logo-slider-container {
    position: relative;
    width: 100%;
    margin: 4rem auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2rem 0;
}

/* Logo Slider */
.logo-slider {
    display: flex;
    align-items: center;
    animation: slideLogos 20s linear infinite;
    will-change: transform;
}

.logo-slide {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 120px;
    overflow: hidden;
    position: relative;
}

.logo-slide:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.reference-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 15px;
    z-index: 1;
}

.logo-slide:hover .reference-logo {
    opacity: 1;
    filter: brightness(1.1) saturate(1.2);
    transform: scale(1.05);
}


/* Reference Details/Stats */
.reference-details {
    margin-top: 4rem;
}

.reference-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.reference-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reference-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.reference-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.reference-stats .stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Logo Slider Animation */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider {
    animation-play-state: paused;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    width: 200px;
    border-radius: 30px;
}

.whatsapp-btn i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    position: absolute;
    left: 70px;
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn:hover i {
    transform: translateX(-50px);
}

/* WhatsApp Animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp Ripple Effect */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover::before {
    transform: scale(1.2);
    opacity: 0;
}

/* Enhanced Animation Keyframes */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Mobil Touch Hover Animasyonları */
@keyframes mobileTouchPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes mobileCardHover {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@keyframes mobileWave {
    0%, 100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(100px) scaleX(1.2);
        opacity: 0.1;
    }
}

@keyframes mobileBubble {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-50px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0.6);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) translateX(-20px) scale(1.2);
    }
    90% {
        opacity: 0.3;
        transform: translateY(10vh) translateX(15px) scale(0.8);
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(-10px) rotate(240deg);
    }
}

/* FLOATING CARDS İÇİN ZORLA GÖSTERİM - EN SON KURAL */
@media (min-width: 1024px) {
    .hero-visual {
        display: block !important;
        position: relative !important;
        height: 600px !important;
        width: 100% !important;
        z-index: 10 !important;
    }
    
    .floating-card {
        display: flex !important;
        position: absolute !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 215, 0, 0.15) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
        border-radius: 20px !important;
        padding: 1.2rem !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
        color: var(--secondary-color) !important;
        animation: float 6s ease-in-out infinite !important;
        min-width: 140px !important;
        max-width: 140px !important;
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2) !important;
        z-index: 20 !important;
    }
    
    .card-1 {
        top: 10% !important;
        right: 8% !important;
        animation-delay: 0s !important;
        z-index: 21 !important;
    }
    
    .card-2 {
        top: 50% !important;
        right: 5% !important;
        animation-delay: 2s !important;
        z-index: 22 !important;
    }
    
    .card-3 {
        bottom: 10% !important;
        right: 25% !important;
        animation-delay: 4s !important;
        z-index: 23 !important;
    }
    
    .card-4 {
        top: 20% !important;
        left: 5% !important;
        animation-delay: 1s !important;
        z-index: 24 !important;
    }
    
    .card-5 {
        bottom: 25% !important;
        left: 8% !important;
        animation-delay: 3s !important;
        z-index: 25 !important;
    }
    
    .card-6 {
        top: 65% !important;
        left: 35% !important;
        animation-delay: 5s !important;
        z-index: 26 !important;
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* Logo Slider Mobile */
    .logo-slider-container {
        margin: 2rem auto;
        padding: 1rem 0;
    }
    
    .logo-slide {
        flex: 0 0 150px;
        margin: 0 0.5rem;
        padding: 0;
        min-height: 80px;
        position: relative;
        overflow: hidden;
    }
    
    .reference-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        z-index: 1;
    }
    
    
    .reference-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .reference-stats .stat-item {
        padding: 1rem;
    }
    
    .reference-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .reference-stats .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Hide enhanced animations on mobile for performance */
    .floating-elements,
    .particle-system {
        display: none !important;
    }
    
    /* Floating cards mobilde gizli */
    .floating-card {
        display: none !important;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn:hover {
        width: 55px;
        border-radius: 50%;
        transform: scale(1.05);
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn:hover i {
        transform: translateX(0);
    }
}
