/* ============================================
   GLOBAL CSS - Tekin Medya & Yazılım
   ============================================ */

/* CSS Variables */
:root {
    --navy: #0B1F3B;
    --purple: #6D28D9;
    --orange: #F97316;
    --secondary-color: #ffffff;
    --soft-blue: #E8F4F8;
    --bg-light: #E8F4F8;
    --muted: #64748b;
    --card: #E8F4F8;
    --radius: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
}


html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg-light);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Tüm Sayfalarda Sabit Konum */
.header {
    position: fixed;
    /* Desktop için fixed */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}


.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
}

.header .logo {
    padding-left: 40px;
    flex-shrink: 0;
    order: 1;
}

.header .nav {
    padding-right: 40px;
    flex-shrink: 0;
    order: 2;
}

.logo-img {
    width: 280px;
    height: auto;
    max-height: 120px;
    filter: brightness(0) invert(0);
    transition: filter 0.3s ease;
}

/* İlk section'larda (hero-slider veya page-hero) logo beyaz */
.hero-slider~* .logo-img,
.page-hero~* .logo-img {
    filter: brightness(0) invert(1);
}

/* İlk section içindeyken logo beyaz */
body:has(.hero-slider) .header:not(.hidden) .logo-img,
body:has(.page-hero:first-of-type) .header:not(.hidden) .logo-img,
body:has(.contact-section:first-of-type) .header:not(.hidden) .logo-img {
    filter: brightness(0) invert(1);
}

/* Menu Toggle Button */
.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.menu-toggle-btn:hover {
    opacity: 0.8;
}

.menu-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.menu-toggle-btn.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 31, 59, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 0;
}

.menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close-btn span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.menu-close-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-close-btn:hover {
    opacity: 0.7;
}

.menu-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.menu-left {
    display: flex;
    flex-direction: column;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.active .menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-overlay.active .menu-list li:nth-child(5) {
    transition-delay: 0.5s;
}

.menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.menu-list a:hover {
    color: var(--orange);
    transform: translateX(10px);
}

.menu-number {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.menu-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.menu-overlay.active .menu-right {
    opacity: 1;
    transform: translateX(0);
}

.menu-contact h3,
.menu-social h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-contact p {
    margin-bottom: 1rem;
}

.menu-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-contact a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* Page Hero Section - Tüm sayfalar için ortak hero (İlk Section Tam Ekran) */
.page-hero {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(100, 181, 246, .85));
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.page-hero .container {
    padding: 0 40px;
    text-align: center;
}

/* Scroll Indicator - Aşağı Ok İşareti */
.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator:hover i {
    opacity: 1;
    transform: translateY(5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tüm Sayfalarda Section Scroll Snap */
.services-section,
.references-section,
.pricing-section {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    box-sizing: border-box;
}

.services-section .container,
.references-section .container,
.pricing-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-section .container::-webkit-scrollbar,
.references-section .container::-webkit-scrollbar,
.pricing-section .container::-webkit-scrollbar {
    display: none;
}

/* Eski stil - silinecek */
.page-hero-old {
    padding: 5rem 0;
    margin: 0;
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(100, 181, 246, .85));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-subtitle {
    font-size: 1.8rem;
    opacity: 0.95;
    font-weight: 400;
    color: var(--secondary-color);
}

/* Services Section - Sayfa içerikleri için */
/* Eski services-section stili - artık kullanılmıyor, yeni stil yukarıda */

/* Section Title */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Service Card */
.service-card {
    background: var(--card);
    background-image:
        radial-gradient(circle at top right, rgba(100, 181, 246, 0.02) 0%, transparent 60%);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    min-height: 0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-features {
    margin-top: 0.6rem;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    line-height: 1.3;
}

.service-features li:last-child {
    border-bottom: none;
}

.price-info {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.btn-link {
    font-size: 0.95rem;
    padding: 12px 30px;
    margin-top: 1rem;
    flex-shrink: 0;
    display: inline-block;
    background: var(--purple);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-link:hover {
    background: #5B21B6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 181, 246, 0.4);
    color: var(--secondary-color);
}

/* Brand Card */
.brand-card {
    background: var(--card);
    background-image:
        radial-gradient(circle at top right, rgba(100, 181, 246, 0.02) 0%, transparent 60%);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    position: relative;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-icon {
    font-size: 2.2rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
}

.brand-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
}

.brand-card p {
    color: var(--muted);
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    overflow-y: auto;
}

/* Project Card */
.project-card {
    background: var(--card);
    background-image:
        radial-gradient(circle at top right, rgba(100, 181, 246, 0.02) 0%, transparent 60%);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--purple);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.project-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Price Info */
.price-info {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
    margin: 0.5rem 0;
    line-height: 1.3;
    flex-shrink: 0;
}

.muted {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--navy);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--orange);
    color: #111827;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--purple);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    filter: brightness(1.1);
}

/* ============================================
   ANA SAYFA STİLLERİ
   ============================================ */

/* Hero Slider - Section 1 */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(100, 181, 246, .85));
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(100, 181, 246, 1), rgba(249, 115, 22, .85));
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(100, 181, 246, .85));
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, rgba(249, 115, 22, 1), rgba(100, 181, 246, .85));
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--secondary-color);
    padding: 3rem;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
}

.slide-content h2 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.slide-content .description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.slide-content strong {
    font-weight: 700;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

.slide-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Section 2 */
.about-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.about-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 40px;
    margin: 0 auto;
}

.about-section p {
    max-width: 1000px;
    margin: 1.2rem auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Ana Sayfa Section Butonları - Tümü Aynı Tasarım (Mor Arka Plan, Beyaz Yazı) */
.about-section .btn-secondary,
.services-grid .btn-link,
.website-packages .btn-link,
.growing-together .btn-link,
.projects-section .btn-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--purple) !important;
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    flex-shrink: 0;
    opacity: 1 !important;
    text-shadow: none !important;
}

.about-section .btn-secondary:hover,
.services-grid .btn-link:hover,
.website-packages .btn-link:hover,
.growing-together .btn-link:hover,
.projects-section .btn-link:hover {
    background: #5B21B6 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.4) !important;
    color: var(--secondary-color) !important;
    opacity: 1 !important;
}

.about-section .btn-primary {
    opacity: 1 !important;
    color: #111827 !important;
}

/* Services Grid - Section 3 */
.services-grid {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.services-grid {
    background:
        radial-gradient(circle at 15% 25%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(100, 181, 246, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, rgba(100, 181, 246, 0.03) 0%, rgba(100, 181, 246, 0.01) 50%, transparent 100%),
        var(--bg-light);
}

.services-grid .container {
    width: 100%;
    max-width: 1600px;
    padding: 1rem 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
    align-content: center;
    box-sizing: border-box;
    height: calc(100vh - 2rem);
    overflow: hidden;
    position: relative;
    z-index: 1;
}



/* Website Packages - Section 4 */
.website-packages {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.website-packages {
    background:
        radial-gradient(circle at 20% 30%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(100, 181, 246, 0.03) 0%, rgba(100, 181, 246, 0.01) 50%, transparent 100%),
        var(--bg-light);
}

.website-packages .container {
    width: 100%;
    max-width: 1600px;
    padding: 1rem 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
    align-content: center;
    box-sizing: border-box;
    height: calc(100vh - 2rem);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.website-packages .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    grid-column: 1 / -1;
    text-align: center;
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.packages-grid {
    display: contents;
}




/* Growing Together - Section 5 */
.growing-together {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.growing-together {
    background:
        radial-gradient(circle at 25% 35%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 75% 65%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(100, 181, 246, 0.03) 0%, rgba(100, 181, 246, 0.01) 50%, transparent 100%),
        var(--bg-light);
}

.growing-together .container {
    position: relative;
    z-index: 1;
}

.growing-together .container {
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.growing-together .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.services-grid .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
    text-align: center;
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 0.5rem;
    flex-grow: 1;
    align-content: start;
    min-height: 0;
    overflow: hidden;
}


.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--purple);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.btn-link:hover {
    background: #5B21B6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 181, 246, 0.4);
    color: var(--secondary-color);
}

/* Projects Section - Section 5 */
.projects-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.projects-section {
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(100, 181, 246, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(100, 181, 246, 0.03) 0%, rgba(100, 181, 246, 0.01) 50%, transparent 100%),
        var(--bg-light);
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.projects-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 20px;
    margin: 0 auto;
}

.projects-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    height: auto;
    min-height: auto;
    overflow: visible;
    scroll-snap-align: unset;
    scroll-snap-stop: unset;
}

/* Contact Section - İlk Section Tam Ekran */
.contact-section:first-of-type {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(100, 181, 246, .85));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}

/* Contact section styles moved to pages/iletisim/iletisim.css */

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-phone,
.contact-website {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.contact-phone a,
.contact-website a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-phone a:hover,
.contact-website a:hover {
    opacity: 0.8;
}

.contact-note {
    margin-top: 3rem;
}

.contact-note p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-note p:last-child {
    font-size: 1.1rem;
}

/* Projects Section - Normal sayfalar için */
.projects-section:not(.hero-slider ~ .projects-section) {
    padding: 5rem 0;
    background: var(--bg-light);
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
}

.projects-grid:not(.projects-section .projects-grid) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Note Box */
.note-box {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--orange);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem auto;
}

.note-box p {
    color: var(--navy);
    line-height: 1.7;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Footer - Tam Viewport */
.footer {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(15, 23, 42, 1));
    color: var(--secondary-color);
    padding: 2rem;
    margin-top: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
    flex: 1;
    align-items: center;
}

.footer-left p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-left p strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-right {
    text-align: right;
}

.footer-note {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.footer-small {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 31, 59, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    z-index: 11000;
    transform: translateY(0);
    transition: transform 0.5s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0;
    /* Override global btn margin */
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Campaign Banner Modal
   ============================================ */
.campaign-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 12000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}

.campaign-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.campaign-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--orange);
}

.campaign-modal.hidden .campaign-content {
    transform: scale(0.8);
}

.campaign-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.campaign-close:hover {
    color: #333;
}

.campaign-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.campaign-body h2 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.highlight-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-text strong {
    color: var(--purple);
    font-weight: 700;
}

.campaign-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.campaign-date {
    font-size: 0.85rem;
    color: var(--orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-campaign {
    background: var(--orange);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-campaign:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
    background: #ea580c;
}

.btn-campaign i {
    font-size: 1.1rem;
}