/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* GPU Acceleration for smooth animations */
.hero, .header, .summary-card, .service-card, .product-card, .process-step, .quality-item {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize font rendering */
html {
    scroll-behavior: smooth;
    font-display: swap;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce layout shifts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    contain: layout style paint;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        
        animation-duration: 25000ms !important;
         
        animation-iteration-count:  !important;
        transition-duration: 8ms !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

/* Color Variables */
:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2b77ad;
    --accent-orange: #ed8936;
    --light-orange: #fbb040;
    --dark-gray: #2d3748;
    --medium-gray: #4a5568;
    --light-gray: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --success-green: #38a169;
    --warning-yellow: #d69e2e;
    --error-red: #e53e3e;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) rotateX(15deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.5);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    filter: brightness(1.1);
}

.btn-primary:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: buttonPulse 0.6s ease-out;
}

@keyframes buttonPulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.btn-secondary {
    background: var(--accent-orange);
    color: white;
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background: var(--light-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
    border-color: var(--light-orange);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    filter: drop-shadow(0 2px 4px rgba(237, 137, 54, 0.3));
}

.logo h2 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo span {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
    text-decoration: none;
    color: #1a202c;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: #0f1419;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--light-orange));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}



.contact-info i {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}



.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.contact-number {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}



.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(26, 54, 93, 0.1);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
}

/* Hero Açılış Animasyonları */
.hero-title .title-main {
    animation: slideInFromTop 1.2s ease-out 0.3s both;
}

.hero-title .title-sub {
    animation: slideInFromTop 1.2s ease-out 0.6s both;
}

.hero-description {
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.hero-features .feature-item:nth-child(1) {
    animation: slideInFromLeft 1s ease-out 1.2s both;
}

.hero-features .feature-item:nth-child(2) {
    animation: slideInFromRight 1s ease-out 1.4s both;
}

.hero-buttons .btn-primary {
    animation: fadeInUp 1s ease-out 1.6s both;
}

.hero-buttons .btn-secondary {
    animation: fadeInUp 1s ease-out 1.8s both;
}

/* Animasyon Keyframes */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Başlangıçta elementleri gizle */
.hero-title .title-main,
.hero-title .title-sub,
.hero-description,
.hero-features .feature-item,
.hero-buttons .btn {
    opacity: 0;
}





/* Epic Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 40%, var(--accent-orange) 100%);
    z-index: -2;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 2.5rem;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--light-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--light-orange);
    font-size: 1.4rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border: 3px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), var(--light-orange));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 10px 25px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.service-features span {
    background: linear-gradient(135deg, #e6f3ff, #f0f8ff);
    color: var(--secondary-blue);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(43, 119, 173, 0.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-description p {
    margin-bottom: 2rem;
    color: var(--light-gray);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 3rem 0;
}

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.2);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--light-orange);
}

.image-placeholder span {
    font-size: 1.4rem;
    font-weight: 700;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.feature-box i {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.feature-box span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07), 0 8px 20px rgba(0, 0, 0, 0.05);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(237, 137, 54, 0.3) 70%);
}

.product-content {
    padding: 2.5rem;
}

.product-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-features span {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: var(--warning-yellow);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(214, 158, 46, 0.2);
}

/* Projects Section */
.projects-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07), 0 8px 20px rgba(0, 0, 0, 0.05);
}

.project-image {
    height: 280px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(26, 54, 93, 0.3) 70%);
}

.project-content {
    padding: 2.5rem;
}

.project-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.project-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    color: var(--success-green);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 1;
}

.contact .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.contact .container {
    position: relative;
    z-index: 3;
}

.contact .section-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

 .contact-content {
     display: flex;
     justify-content: center;
     align-items: start;
     max-width: 1200px;
     margin: 0 auto;
 }

.contact .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}



.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--accent-orange);
    width: 350px;
    height: 240px;
    text-align: center;
}



.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 12px rgba(237, 137, 54, 0.25);
    margin-bottom: 0.8rem;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-details {
    text-align: center;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}





.contact-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    color: var(--light-gray);
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-map-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-map-container h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-map-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.contact-form-container h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.footer-logo p {
    color: var(--light-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--light-orange);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--light-orange);
}

.footer-contact i {
    color: var(--accent-orange);
    width: 25px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 1rem 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 15px 15px;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .contact-info span {
        display: none;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        justify-content: space-around;
        gap: 1.5rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* İletişim sayfası düzeltmeleri */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem;
    }
    
    .products-grid,
    .projects-slider {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}



/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header .hero-background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.page-header.iletisim .hero-background {
    background-position: left top !important;
}

.page-header .hero-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
}

.page-header-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

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

/* About Detail Styles */
.about-detail {
    padding: 6rem 0;
}

.mission-vision {
    background: var(--bg-light);
    background-image: url('../images/yamac.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Values Styles */
.values {
    padding: 6rem 0;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

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

.value-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Team Styles */
.team {
    background: var(--bg-light);
    background-image: url('../images/Dagci.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

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

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Services Detail Styles */
.services-detail {
    padding: 6rem 0;
}

.service-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
}

.service-list i {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Process Styles */
.process {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Why Choose Styles */
.why-choose {
    padding: 6rem 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.choose-icon i {
    font-size: 1.8rem;
    color: white;
}

.choose-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.choose-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Product Categories Styles */
.product-categories {
    padding: 6rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Product Section Styles */
.product-section {
    padding: 6rem 0;
}

.product-section:nth-child(even) {
    background: var(--bg-light);
}

#safety-nets {
    background-image: url('../images/safety-net.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

#safety-nets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

#safety-nets .container {
    position: relative;
    z-index: 2;
}

#safety-nets .section-subtitle {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

#ppe {
    background-image: url('../images/ekipmanlar.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

#ppe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

#ppe .container {
    position: relative;
    z-index: 2;
}

#ppe .section-subtitle {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.product-specs {
    margin: 1.5rem 0;
}

.product-specs ul {
    list-style: none;
    text-align: left;
}

.product-specs li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.product-specs strong {
    color: var(--dark-gray);
}

/* Quality Assurance Styles */
.quality-assurance {
    background: white;
    padding: 6rem 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--success-green), #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quality-icon i {
    font-size: 1.8rem;
    color: white;
}

.quality-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quality-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Project Stats Styles */
.project-stats {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Featured Projects Styles */
.featured-projects {
    padding: 6rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-project {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.featured-project .project-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: white;
}

.project-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* All Projects Styles */
.all-projects {
    background: var(--bg-light);
    padding: 6rem 0;
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Testimonials Styles */
.testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--light-gray);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.author-info span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Contact Info Section Styles */
.contact-info-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--light-orange));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
    transition: all 0.3s ease;
}

.contact-card .contact-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.4);
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
}

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

.contact-card p {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.contact-card span {
    color: var(--accent-orange);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(237, 137, 54, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 6rem 0;
}







.show-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.3);
}

.show-form-btn::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;
}

.show-form-btn:hover::before {
    left: 100%;
}

.show-form-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.3);
}

.btn-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.3);
}

.btn-icon i {
    font-size: 2rem;
    color: white;
}

.show-form-btn h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.show-form-btn p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.show-form-btn:hover .btn-arrow {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        min-height: auto;
    }
    
    .show-form-btn {
        padding: 2rem 1.5rem;
    }
    
    .btn-icon {
        width: 60px;
        height: 60px;
    }
    
    .btn-icon i {
        font-size: 1.5rem;
    }
    
    .show-form-btn h3 {
        font-size: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
}

/* Contact Info Header */
.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.contact-info-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--light-orange));
    border-radius: 2px;
}

.contact-info-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Advantages Cards */
.contact-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-blue);
}

.advantage-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.advantage-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

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

.cta-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-phone {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
}

.cta-phone:hover {
    background: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .contact-info-header h2 {
        font-size: 2rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

.feature-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--accent-orange);
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.15);
    transition: all 0.3s ease;
}

.emergency-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 137, 54, 0.2);
}

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

.emergency-icon {
    width: 50px;
    height: 50px;
    background: var(--error-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    color: white;
    font-size: 1.2rem;
}

.emergency-content h4 {
    color: var(--error-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.emergency-phone {
    display: inline-block;
    background: var(--error-red);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    margin-top: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Service Areas Styles */
.service-areas {
    padding: 6rem 0;
    position: relative;
}

.service-areas.page-header {
    background: none;
}

.service-areas.page-header .hero-overlay {
    background: rgba(0, 0, 0, 0.4) !important;
}

.service-areas.page-header .section-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-areas.page-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Hero Styles */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

/* Contact Hero Açılış Animasyonları */
.contact-hero .hero-title .title-main {
    animation: slideInFromTop 1.2s ease-out 0.3s both;
}

.contact-hero .hero-title .title-sub {
    animation: slideInFromTop 1.2s ease-out 0.6s both;
}

.contact-hero .hero-description {
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.contact-hero .hero-features .feature-item:nth-child(1) {
    animation: slideInFromLeft 1s ease-out 1.2s both;
}

.contact-hero .hero-features .feature-item:nth-child(2) {
    animation: slideInFromRight 1s ease-out 1.4s both;
}

.contact-hero .hero-buttons .btn-primary {
    animation: fadeInUp 1s ease-out 1.6s both;
}

.contact-hero .hero-buttons .btn-secondary {
    animation: fadeInUp 1s ease-out 1.8s both;
}

/* Contact Hero başlangıçta elementleri gizle */
.contact-hero .hero-title .title-main,
.contact-hero .hero-title .title-sub,
.contact-hero .hero-description,
.contact-hero .hero-features .feature-item,
.contact-hero .hero-buttons .btn {
    opacity: 0;
}

.contact-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.4) !important;
}

.contact-hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-header {
    margin-bottom: 4rem;
}

.hero-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-header p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: 320px !important;
    gap: 2rem !important;
    margin-top: 3rem;
    align-items: stretch !important;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.contact-hero-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-hero-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.contact-hero-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero-card .contact-main {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-orange);
}

.contact-hero-card .contact-sub {
    font-size: 1rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Hero Responsive */
@media (max-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header p {
        font-size: 1.2rem;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-hero-card {
        padding: 2rem 1.5rem;
    }
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.area-icon i {
    font-size: 1.5rem;
    color: white;
}

.area-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.area-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.service-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.note-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-note p {
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
}

/* FAQ Styles */
.faq {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03), 0 3px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(43, 119, 173, 0.05));
    border-left: 4px solid var(--primary-blue);
}

.faq-item.active::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
    border-left: 3px solid var(--accent-orange);
    background: rgba(237, 137, 54, 0.05);
    border-radius: 0 8px 8px 0;
}

.faq-answer ul li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.social-link:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .project-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .service-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}



/* Main Content Summary Section */
.main-content-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.main-content-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.summary-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.15);
}

.summary-card:hover::before {
    opacity: 0.4;
}

/* Hakkımızda kartı için özel stil */
.summary-card.hakkimizda::before {
    background-image: url('../images/pexels-olly-3760069.jpg');
}

/* Hizmetlerimiz kartı için özel stil */
.summary-card.hizmetlerimiz::before {
    background-image: url('../images/rope-access-training.jpg');
}

/* Ürünlerimiz kartı için özel stil */
.summary-card.urunlerimiz::before {
    background-image: url('../images/safety-equipment.jpg');
}

/* Projelerimiz kartı için özel stil */
.summary-card.projelerimiz::before {
    background-image: url('../images/pexels-mikhail-nilov-8297652.jpg');
}

/* İletişim kartı için özel stil */
.summary-card.iletisim::before {
    background-image: url('../images/unnamed.png');
}

.summary-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.summary-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.summary-card .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    font-weight: 600;
    color: white;
}

.summary-card .btn:hover {
    background: var(--light-orange);
    color: white;
    border-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--light-orange);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--light-orange);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--light-orange);
    font-size: 1.1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background: white;
        padding-top: 80px;
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-link {
        color: var(--primary-blue);
        font-size: 1.2rem;
        font-weight: 600;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-orange);
    }

    .nav-link::after {
        background: var(--accent-orange);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-contact .contact-info {
        display: none;
    }

    .hero-title .title-main {
        font-size: 3.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.5rem;
    }

    .services-grid,
    .products-grid,
    .projects-slider,
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-header {
        text-align: center;
    }

    .about-visual {
        margin-top: 3rem;
    }

    .about-features {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }

    .hero-title .title-main {
        font-size: 2.8rem;
    }

    .hero-title .title-sub {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .product-card,
    .project-card,
    .summary-card {
        padding: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem 0;
    }

    .logo h2 {
        font-size: 1.4rem;
    }

    .logo span {
        font-size: 0.8rem;
    }

    .hero-title .title-main {
        font-size: 2.2rem;
    }

    .hero-title .title-sub {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .feature-item {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-box i {
        margin-bottom: 0.5rem;
    }

    .footer-social a {
        margin: 0 0.8rem;
    }
}



/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Services Detail Styles */
.services-detail {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.03), 0 6px 15px rgba(0, 0, 0, 0.02);
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    transform: scale(1.1);
}

.service-detail-card .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-detail-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-detail-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
}

.service-list li i {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background-image: url('../images/pexels-leventsimsek-25338330.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

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

.process .section-subtitle {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.choose-icon i {
    font-size: 1.8rem;
    color: white;
}

.choose-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.choose-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Why Choose Us Section (Alternative) */
.why-choose-us {
    padding: 6rem 0;
    background: var(--primary-blue);
    color: white;
}

.why-choose-us .section-title {
    color: white;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Page Content Styles */
.page-content {
    padding: 6rem 0;
    margin-top: 80px;
}

.page-content h1 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 3rem;
    text-align: center;
}

.page-content h2 {
    color: var(--primary-blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.page-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.page-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.page-content ul li {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.page-content ul li strong {
    color: var(--primary-blue);
}

/* Additional responsive styles for new sections */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .service-detail-card,
    .process-step,
    .choose-item,
    .feature-item {
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .page-content h1 {
        font-size: 2.5rem;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 30vh;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .service-detail-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-detail-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 4rem 0;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.6rem;
    }
}


/* İletişim Sayfası Ek Stiller */
.contact-info-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card .contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 6rem 0;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03), 0 3px 8px rgba(0, 0, 0, 0.02);
}

.contact-features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-features .feature-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-features .feature-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-features .feature-content p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

.emergency-contact {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--error-red), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 1.4rem;
    color: white;
}

.emergency-content h4 {
    color: var(--error-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-content p {
    color: #7f1d1d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.emergency-phone {
    display: inline-block;
    background: var(--error-red);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--secondary-blue);
}

.service-areas {
    padding: 6rem 0;
    background: var(--bg-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.area-icon i {
    font-size: 1.4rem;
    color: white;
}

.area-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.area-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.service-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.2rem;
    color: white;
}

.service-note p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.faq {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 54, 93, 0.05);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light), #f8fafc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 137, 54, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

.faq-question h4 {
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
    border-left: 3px solid var(--accent-orange);
    background: rgba(237, 137, 54, 0.05);
    border-radius: 0 8px 8px 0;
}

.faq-answer ul li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

/* Floating Action Button */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-button i {
    color: white;
    font-size: 2.5rem;
}



/* Referanslar Slider */
.references-slider {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
    overflow: hidden; /* Slider dışına taşan elemanları gizle */
}

.references-slider .section-header {
    margin-bottom: 50px;
}

.references-slider .section-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.references-slider .section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Butonlar için boşluk */
}

.slider-wrapper {
    display: flex;
    flex-direction: column; /* Öğeleri dikey olarak sırala */
    gap: 20px; /* Satırlar arasında boşluk */
    overflow: hidden; /* Kaydırma çubuklarını gizle */
    position: relative;
    height: 400px; /* 3 sıra ve boşluklar için yeterli yükseklik */
}

.slider-track {
    display: flex;
    flex-wrap: nowrap; /* Öğelerin tek bir satırda kalmasını sağla */
    animation: slide 60s linear infinite; /* Animasyon süresini ve hızını ayarla */
    width: max-content; /* Tüm öğeleri sığdırmak için genişliği ayarla */
}

.slider-track:nth-child(2) {
    animation-delay: -20s; /* İkinci sıranın animasyonunu geciktir */
}

.slider-track:nth-child(3) {
    animation-delay: -40s; /* Üçüncü sıranın animasyonunu geciktir */
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Öğelerin yarısı kadar kaydır */
}





.slider-item {
    flex: 0 0 auto; /* Öğelerin boyutunu koru ve küçülmesini engelle */
    width: 200px; /* Her bir referans öğesinin genişliği */
    height: 120px; /* Her bir referans öğesinin yüksekliği */
    margin: 0 15px; /* Öğeler arasında boşluk */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* scroll-snap-align: start; */ /* Otomatik kaydırma için devre dışı bırak */
}

.slider-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%); /* Referans logolarını gri tonlamalı yap */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.slider-item:hover img {
    filter: grayscale(0%); /* Üzerine gelindiğinde renkli yap */
    opacity: 1;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    display: none; /* Otomatik kaydırma olduğu için butonları gizle */
}

.slider-button:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-50%) scale(1.05);
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}

/* Responsive Ayarlamalar */
@media (max-width: 768px) {
    .references-slider {
        padding: 60px 0;
    }

    .references-slider .section-title {
        font-size: 2rem;
    }

    .slider-item {
        width: 150px;
        height: 100px;
        margin: 0 10px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .references-slider {
        padding: 40px 0;
    }

    .references-slider .section-title {
        font-size: 1.8rem;
    }

    .slider-item {
        width: 120px;
        height: 80px;
        margin: 0 8px;
    }

    .slider-button {
        display: none; /* Küçük ekranlarda butonları gizle */
    }

    .slider-container {
        padding: 0 20px;
    }

    .slider-wrapper {
        height: 300px; /* Küçük ekranlarda yükseklik ayarı */
    }
}

