/* ============================================
   CEVYRA Digital Agency - Custom Styles
   Ana Renk: #e1dbd7
   ============================================ */

:root {
    --color-base: #e1dbd7;
    --color-dark: #1a1a1a;
    --color-text: #2c2c2c;
    --color-accent: #4a4a4a;
    --color-white: #ffffff;
    --transition-base: 0.6s ease-out;
    --spacing-section: 120px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

  html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    font-size: 16px;
  }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-base);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings - Cardo Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.2;
}

/* Paragraphs and text elements - Inter Font */
p, span, li, label, input, textarea, select, button, a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   Scroll Snap Sections
   ============================================ */

.main-scroll-container {
    scroll-snap-type: y mandatory;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
  position: relative;
    padding: var(--spacing-section) 0;
    display: flex;
    align-items: center;
}

section.section-services {
    padding: 0 !important;
    display: block !important;
    align-items: stretch !important;
}

/* ============================================
   Section Navigation Dots
   ============================================ */

.section-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.section-dots {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-dots .dot:hover,
.section-dots .dot.active {
    background-color: var(--color-dark);
    transform: scale(1.3);
}

/* ============================================
   Hero Section
   ============================================ */

.section-hero {
    height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-video-container,
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(225, 219, 215, 0.1));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 15vh;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.btn-hero-cta {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-cta:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background-color: var(--color-white);
    margin: 10px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ============================================
   Manifesto Section
   ============================================ */

.section-manifesto {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.manifesto-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.manifesto-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    z-index: 2;
}

.manifesto-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--spacing-section) 0;
    color: var(--color-white);
    width: 100%;
}

.manifesto-content-wrapper {
    text-align: right;
    padding-right: 80px;
    padding-left: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
}

.manifesto-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    color: #f2e8cf;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: right;
}

.manifesto-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.manifesto-item {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 20px;
    padding-left: 0;
    transition: all 0.3s ease;
    text-align: right;
}

.manifesto-item:hover {
    border-right-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-5px);
}

.manifesto-item h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 6px 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
}

.manifesto-item p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: right;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    color: #f2e8cf;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* ============================================
   Services Section
   ============================================ */

.section-services {
    height: 100vh;
    padding: 0 !important;
  position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    display: block;
    align-items: stretch;
}

.services-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.services-background-image {
    width: 100%;
    height: 100%;
    min-width: 100%;
  min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    filter: none;
    position: absolute;
    top: 0;
    left: 0;
}

.services-overlay {
    display: none; /* Overlay kaldırıldı - blur yok */
}

.services-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 0;
    color: var(--color-white);
    width: 100%;
    margin: 0;
}

.services-content-wrapper {
    text-align: left;
    padding-left: 100px;
    padding-right: 0;
    padding-top: 0;
    max-width: none;
    margin-right: auto;
    margin-left: 0;
    position: relative;
    width: auto;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    color: #f2e8cf;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: left;
}

.services-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: left;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
  margin-bottom: 60px;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.service-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.service-block:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-left-color: rgba(255, 255, 255, 0.6);
}

.service-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.service-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

/* ============================================
   Services Cards Grid
   ============================================ */

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-right: 100px;
}

.service-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 0;
}

.service-card-1 {
    animation-delay: 0.1s;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.5), rgba(220, 38, 38, 0.4));
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.service-card-1::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(220, 38, 38, 0.3));
}

.service-card-2 {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, rgba(245, 230, 200, 0.5), rgba(237, 212, 170, 0.4));
    box-shadow: 0 10px 40px rgba(245, 230, 200, 0.3);
}

.service-card-2::before {
    background: linear-gradient(135deg, rgba(245, 230, 200, 0.4), rgba(237, 212, 170, 0.3));
}

.service-card-3 {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(248, 250, 252, 0.3));
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.service-card-3::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(248, 250, 252, 0.2));
}

/* Beyaz kart için koyu ikon rengi */
.service-card-3 .service-card-icon {
    color: #1a1a1a;
}

.service-card-3 .service-card-title {
    color: #1a1a1a;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.service-card-3 .service-card-description {
    color: rgba(26, 26, 26, 0.9);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    color: #ffffff;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.service-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

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

/* Responsive adjustments for services cards */
@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding-right: 50px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-right: 0;
        max-width: 600px;
    }
    
    .service-card {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        margin-top: 50px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card-title {
        font-size: 1.4rem;
    }
    
    .service-card-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   Showcase Section
   ============================================ */

.section-showcase {
    position: relative;
    background-color: var(--color-base);
    overflow: hidden;
}

.showcase-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.showcase-background-image {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    filter: none;
    position: absolute;
    top: 0;
    left: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.showcase-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.showcase-image {
    position: relative;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.showcase-number {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Main Showcase Section Title */
.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    color: #f2e8cf;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Project Card Titles in Showcase Overlay */
.showcase-overlay .showcase-title {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.4;
}

/* ============================================
   References Section
   ============================================ */

.section-references {
    background-color: var(--color-white);
    padding: 80px 0;
}

.references-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-top: 60px;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 60px;
}

.references-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-block;
    padding: 20px 40px;
}

.reference-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.marquee-item:hover .reference-logo {
    opacity: 1;
}

/* ============================================
   Contact Section
   ============================================ */

.section-contact {
    position: relative;
    background-color: var(--color-base);
    overflow: hidden;
}

.contact-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.contact-background-image {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.contact-form {
    max-width: 850px;
    margin: 0 auto;
    padding: 70px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
}

.contact-form .form-control:hover,
.contact-form .form-select:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 1);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
    outline: none;
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    margin-top: 20px;
    margin-bottom: 30px;
}

.contact-form .form-check-input {
    margin-top: 0.35em;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    width: 1.2em;
    height: 1.2em;
    transition: all 0.3s ease;
}

.contact-form .form-check-input:checked {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
    border-color: var(--color-dark);
}

.contact-form .form-check-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-left: 8px;
}

.contact-form .form-check-label a {
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.contact-form .form-check-label a:hover {
    opacity: 0.7;
}

.btn-submit {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 16px 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form-note {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.85rem;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   Footer
   ============================================ */

.footer-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
}

.footer-section h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal-text,
.reveal-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    letter-spacing: -0.02em;
}

.reveal-text.revealed,
.reveal-image.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Film Grain Overlay (Optional)
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   Premium Detaylar
   ============================================ */

/* Signature Line Animation (Section geçişlerinde) */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-dark), transparent);
    opacity: 0;
    transition: width 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 1;
}

section.revealed::before {
    width: 200px;
    opacity: 0.3;
}

/* Card Tilt Effect (Hover'da hafif tilt) */
.service-block,
.showcase-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-block:hover,
    .showcase-item:hover {
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    }
}

/* Cursor Custom (Premium hissi için) */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: default;
    }
    
    a, button, .showcase-item, .service-block {
        cursor: pointer;
    }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .manifesto-content-wrapper {
        padding-right: 20px;
        max-width: 100%;
        margin-right: 0;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .manifesto-title {
        font-size: 2rem;
        margin-bottom: 30px;
        white-space: normal;
    }
    
    .manifesto-item h3 {
        font-size: 0.9rem;
    }
    
    .manifesto-item p {
        font-size: 0.75rem;
    }
    
    .manifesto-items {
        align-items: flex-start;
    }
    
    .manifesto-item {
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 0;
        padding-left: 20px;
        text-align: left;
    }
    
    .manifesto-item:hover {
        transform: translateX(5px);
    }
    
    .manifesto-item h3 {
        text-align: left;
    }
    
    .manifesto-item p {
        text-align: left;
    }
    
    .manifesto-title {
        text-align: left;
    }
    
    .manifesto-content-wrapper {
        text-align: left;
        padding-right: 0;
        margin-left: 0;
    }
    
    .section-nav {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Horizontal Scroll - Mobile */
    .services-horizontal-scroll {
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-landscape {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        padding: 32px 24px;
    }
    
    .service-landscape h4 {
        font-size: 20px;
    }
    
    .service-landscape p {
        font-size: 13px;
    }
    
    .services-content-wrapper {
        padding-left: 20px;
        max-width: 100%;
    }
    
    .services-title {
        font-size: 2rem;
        white-space: normal;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 0;
        min-height: auto;
    }
}

/* ============================================
   Index2.html Styles - Digital Atelier Theme
   ============================================ */

:root {
    --bg: #000000;
    --ink: #f4f1e9;
    --muted: rgba(244, 241, 233, .72);
    --muted2: rgba(244, 241, 233, .55);
    --line: rgba(244, 241, 233, .12);
    --card: rgba(244, 241, 233, .05);
    --card2: rgba(244, 241, 233, .075);
    --gold: rgba(214, 181, 122, .95);
    --goldSoft: rgba(214, 181, 122, .22);
    --shadow: 0 18px 60px rgba(0, 0, 0, .60);
    --radius: 22px;
    --max: 1180px;
    --serif: ui-serif, "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: ui-sans-serif, "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* Override body for index2 theme */
body.index2-theme {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(900px 520px at 18% 10%, rgba(214, 181, 122, .10), transparent 55%),
        radial-gradient(780px 420px at 85% 12%, rgba(244, 241, 233, .06), transparent 60%),
        linear-gradient(180deg, #000 0%, #070707 100%);
    font-family: var(--sans);
    line-height: 1.55;
    overflow-x: hidden;
}

/* Subtle grain for texture */
body.index2-theme:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

.grid {
    display: grid;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(244, 241, 233, .03);
    color: var(--ink);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
    user-select: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 241, 233, .22);
    background: rgba(244, 241, 233, .045);
}

.btn:active {
    transform: translateY(0px);
}

.btn.primary {
    border-color: rgba(214, 181, 122, .55);
    background: radial-gradient(120% 120% at 20% 10%, rgba(214, 181, 122, .18), rgba(244, 241, 233, .03));
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
}

.smallcaps {
    font-size: 12px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .78);
    font-weight: 500;
}

.divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 241, 233, .18), transparent);
    margin: 18px 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(244, 241, 233, .07);
    overflow: visible;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
    position: relative;
    overflow: visible;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    text-decoration: none;
    color: inherit;
}

.brand img {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .6));
}

.brand .wordmark {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand .wordmark b {
    font-family: 'Cardo', serif;
    letter-spacing: .18em;
    font-size: 14px;
}

.brand .wordmark span {
    font-family: 'Cardo', serif;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .62);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
}

nav a {
    font-family: 'Cardo', serif;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .62);
    padding: 10px 10px;
    border-radius: 999px;
    transition: background .18s ease, color .18s ease;
    text-decoration: none;
}

nav a:hover {
    background: rgba(244, 241, 233, .04);
    color: rgba(244, 241, 233, .90);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: rgba(244, 241, 233, .85);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Gate */
.gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background:
        radial-gradient(900px 520px at 50% 30%, rgba(244, 241, 233, .06), transparent 60%),
        radial-gradient(900px 520px at 20% 15%, rgba(214, 181, 122, .10), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .96));
    transition: opacity .35s ease, transform .35s ease;
}

.gate.hide {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.gate-card {
    width: min(920px, calc(100% - 44px));
    border: 1px solid rgba(244, 241, 233, .12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(244, 241, 233, .06), rgba(244, 241, 233, .02));
    box-shadow: var(--shadow);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.gate-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(520px 240px at 20% 10%, rgba(214, 181, 122, .14), transparent 65%),
                radial-gradient(520px 240px at 85% 20%, rgba(244, 241, 233, .08), transparent 65%);
    opacity: .85;
    pointer-events: none;
}

.gate-inner {
    position: relative;
    z-index: 1;
}

.gate-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.gate-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gate-logo img {
    height: 34px;
    width: auto;
}

.gate-title {
    margin: 18px 0 6px;
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: -.02em;
    line-height: 1.06;
    color: var(--ink);
}

.gate-sub {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
    font-size: 14px;
}

.gate-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 18px;
}

.scroll-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .68);
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, var(--gold), rgba(214, 181, 122, .20));
    box-shadow: 0 0 0 7px rgba(214, 181, 122, .08);
    animation: pulse 1.9s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: .85;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 92px 0;
}

.hero {
    padding: 72px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: start;
}

.h1 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: clamp(40px, 5.4vw, 72px);
    letter-spacing: -.03em;
    line-height: 1.02;
    color: var(--ink);
}

.lead {
    margin: 0;
    color: var(--muted);
    max-width: 58ch;
    font-size: 15px;
}

.panel {
    border: 1px solid rgba(244, 241, 233, .12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(244, 241, 233, .05), rgba(244, 241, 233, .02));
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.panel:before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(460px 260px at 18% 12%, rgba(214, 181, 122, .16), transparent 65%);
    opacity: .6;
    pointer-events: none;
}

.panel > * {
    position: relative;
    z-index: 1;
}

.panel-pad {
    padding: 22px;
}

/* Hero Logo Panel - Deep Midnight Prestige - Parlak 4K Renk */
.hero-logo-panel {
    /* Parlak gradient - daha opak ve canlı renkler */
    background: linear-gradient(135deg, #000035 0%, #0470DC 100%) !important;
    
    /* Buzlu cam derinliği */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    /* Border kaldırıldı */
    border: none !important;
    
    /* Parlak 4K glow efektleri - çok katmanlı */
    box-shadow: 
        0 0 0 1px rgba(4, 112, 220, 0.2) inset,
        0 8px 32px 0 rgba(0, 0, 0, 0.5),
        0 20px 60px rgba(0, 0, 53, 0.6),
        0 10px 30px rgba(4, 112, 220, 0.4),
        0 0 50px rgba(4, 112, 220, 0.3),
        0 0 80px rgba(0, 0, 53, 0.4) !important;
    
    border-radius: 24px !important;
    padding: 40px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

/* Panel:before'u override et - altın rengi kaldır */
.hero-logo-panel::before {
    content: "" !important;
    position: absolute !important;
    inset: -2px !important;
    background: radial-gradient(600px 400px at 50% 50%, 
        rgba(4, 112, 220, 0.3) 0%,
        rgba(0, 0, 53, 0.4) 40%,
        transparent 70%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Ekstra parlaklık katmanı */
.hero-logo-panel::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, 
        rgba(4, 112, 220, 0.1) 0%,
        rgba(0, 0, 53, 0.2) 50%,
        rgba(4, 112, 220, 0.1) 100%) !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: 24px !important;
}

.hero-logo-panel:hover {
    transform: translateY(-4px) !important;
    box-shadow: 
        0 0 0 1px rgba(4, 112, 220, 0.3) inset,
        0 12px 40px 0 rgba(0, 0, 0, 0.6),
        0 25px 70px rgba(0, 0, 53, 0.7),
        0 15px 40px rgba(4, 112, 220, 0.5),
        0 0 60px rgba(4, 112, 220, 0.4),
        0 0 100px rgba(0, 0, 53, 0.5) !important;
}

.hero-logo-panel:hover::before {
    opacity: 1.2 !important;
    background: radial-gradient(700px 500px at 50% 50%, 
        rgba(4, 112, 220, 0.4) 0%,
        rgba(0, 0, 53, 0.5) 40%,
        transparent 70%) !important;
}

.hero-logo-panel > * {
    position: relative;
    z-index: 1;
}

.micro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.micro b {
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--ink);
}

.micro span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    max-width: 52ch;
}

.micro .stamp {
    border: 1px solid rgba(214, 181, 122, .35);
    background: rgba(214, 181, 122, .08);
    color: rgba(214, 181, 122, .98);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.title {
    margin: 0 0 10px;
    font-family: 'Cardo', serif;
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--ink);
    font-weight: 600;
}

/* Approach section title özel stil */
#approach .title {
    font-family: 'Cardo', serif;
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: -.03em;
}

#approach .subtitle {
    font-family: 'Cardo', serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 70ch;
    line-height: 1.6;
}

.subtitle {
    margin: 0;
    font-family: 'Cardo', serif;
    color: rgba(244, 241, 233, 0.8);
    max-width: 76ch;
    font-size: 16px;
}

/* Approach cards */
.sig {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(244, 241, 233, .12);
    background: rgba(244, 241, 233, .03);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 241, 233, .22);
    background: rgba(244, 241, 233, .04);
}

.card .kicker {
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(214, 181, 122, .95);
}

.card h3 {
    margin: 10px 0 8px;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--ink);
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Special card with gradient and editorial style */
.card-special {
    background: linear-gradient(135deg, #E0C3FC 0%, #8EC5FC 100%),
                rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 20px 60px rgba(224, 195, 252, 0.4), 
                0 10px 30px rgba(142, 197, 252, 0.3),
                0 0 40px rgba(224, 195, 252, 0.2) !important;
    padding: 40px 32px !important;
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.card-special .kicker {
    color: rgba(0, 0, 0, 0.85) !important;
    font-weight: 600;
    font-size: 14px !important;
}

.card-special h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    color: #000000 !important;
    font-size: 22px !important;
}

.card-special p {
    color: rgba(0, 0, 0, 0.85) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    line-height: 1.6;
}

.card-special:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 25px 70px rgba(224, 195, 252, 0.5), 
                0 15px 40px rgba(142, 197, 252, 0.4),
                0 0 50px rgba(224, 195, 252, 0.3) !important;
}

/* Second special card with pink to purple gradient */
.card-special-2 {
    background: linear-gradient(135deg, #FA709A 0%, #6157FF 100%),
                rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 20px 60px rgba(250, 112, 154, 0.4), 
                0 10px 30px rgba(97, 87, 255, 0.3),
                0 0 40px rgba(250, 112, 154, 0.2) !important;
    padding: 40px 32px !important;
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.card-special-2 .kicker {
    color: rgba(0, 0, 0, 0.85) !important;
    font-weight: 600;
    font-size: 14px !important;
}

.card-special-2 h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    color: #000000 !important;
    font-size: 22px !important;
}

.card-special-2 p {
    color: rgba(0, 0, 0, 0.85) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    line-height: 1.6;
}

.card-special-2:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 25px 70px rgba(250, 112, 154, 0.5), 
                0 15px 40px rgba(97, 87, 255, 0.4),
                0 0 50px rgba(250, 112, 154, 0.3) !important;
}

/* Third special card with green to turquoise gradient */
.card-special-3 {
    background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%),
                rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 20px 60px rgba(67, 233, 123, 0.4), 
                0 10px 30px rgba(56, 249, 215, 0.3),
                0 0 40px rgba(67, 233, 123, 0.2) !important;
    padding: 40px 32px !important;
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.card-special-3 .kicker {
    color: rgba(0, 0, 0, 0.85) !important;
    font-weight: 600;
    font-size: 14px !important;
}

.card-special-3 h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    color: #000000 !important;
    font-size: 22px !important;
}

.card-special-3 p {
    color: rgba(0, 0, 0, 0.85) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    line-height: 1.6;
}

.card-special-3:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 25px 70px rgba(67, 233, 123, 0.5), 
                0 15px 40px rgba(56, 249, 215, 0.4),
                0 0 50px rgba(67, 233, 123, 0.3) !important;
}

/* Services */
.services {
    grid-template-columns: repeat(3, 1fr);
}

.service {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(244, 241, 233, .12);
    background: rgba(244, 241, 233, .03);
    min-height: 150px;
}

.service h4 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
}

.service p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Services Horizontal Scroll Layout */
.services-horizontal-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scrollbar-width: thin;
}

.services-horizontal-scroll::-webkit-scrollbar {
    height: 4px;
}

.services-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.services-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.services-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-landscape {
    position: relative;
    flex: 0 0 auto;
    width: 320px;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 32px;
    min-height: 280px;
    border-radius: 24px;
    border-right: none;
    background-image: url('/assets/img/hizmetler_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Desktop: 3-4 kart görünür */
@media (min-width: 1024px) {
    .service-landscape {
        width: calc((100% - 60px) / 3);
        min-width: 300px;
        max-width: 380px;
    }
}

@media (min-width: 1440px) {
    .service-landscape {
        width: calc((100% - 80px) / 4);
        min-width: 320px;
        max-width: 400px;
    }
}

.service-landscape:last-child {
    border-right: none;
}

/* Iridescent hover efekti */
.service-landscape::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(224, 195, 252, 0.15) 0%,
        rgba(142, 197, 252, 0.15) 50%,
        rgba(67, 233, 123, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 0;
    filter: blur(8px);
}

.service-landscape:hover::before {
    opacity: 1;
}

.service-landscape::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(224, 195, 252, 0.08) 0%,
        rgba(142, 197, 252, 0.08) 50%,
        rgba(67, 233, 123, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-landscape:hover::after {
    opacity: 1;
}

.service-num-landscape {
    font-family: 'Cardo', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-landscape h4 {
    font-family: 'Cardo', serif;
    font-size: 24px;
    font-weight: 400;
    color: #f4f1e9;
    margin: 0 0 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-landscape p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    white-space: normal;
}

/* Hover animasyonu - metinler yukarı kayma */
.service-landscape:hover .service-num-landscape {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.service-landscape:hover h4 {
    transform: translateY(-4px);
}

.service-landscape:hover p {
    transform: translateY(-4px);
}



/* ================================
   Showcase - Pinterest vibe effect
   HTML yapını bozmadan çalışır
==================================*/

/* grid varsa zaten var, ama garantiye alalım */
.grid.showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    perspective: 1100px;
}

/* kart */
.grid.showcase .shot {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #070707;
    transform-style: preserve-3d;
    transition: transform .35s ease, filter .35s ease, opacity .35s ease, box-shadow .35s ease;
    will-change: transform, filter;
}

/* premium inset border + derinlik */
.grid.showcase .shot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        0 0 0 1px rgba(244, 241, 233, .10) inset,
        0 18px 44px rgba(0, 0, 0, .55);
    opacity: .95;
}

/* mouse takip eden spotlight/shine */
.grid.showcase .shot::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity .22s ease;
    background:
        radial-gradient(650px 360px at var(--mx, 50%) var(--my, 50%),
            rgba(244, 241, 233, .22),
            rgba(244, 241, 233, .10) 28%,
            rgba(0, 0, 0, 0) 62%),
        linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .10) 35%,
            rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
}

/* görsel */
.grid.showcase .shot img {
    width: 100%;
    height: clamp(220px, 22vw, 320px);
    object-fit: cover;
    display: block;
    filter: saturate(.95) contrast(1.05);
    transition: transform .6s ease, filter .35s ease;
}

/* meta alanı */
.grid.showcase .shot .meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 16px 14px;
    color: #f4f1e9;
    transform: translateZ(36px);
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .34) 55%,
            rgba(0, 0, 0, 0));
}

.grid.showcase .shot .num {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .70;
    margin-bottom: 6px;
    color: #f4f1e9;
}

.grid.showcase .shot h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #f4f1e9;
}

.grid.showcase .shot span {
    font-size: 13px;
    opacity: .75;
    color: #f4f1e9;
}

/* hover olduğunda diğer kartları geri çek */
.grid.showcase:hover .shot {
    opacity: .55;
    filter: saturate(.75) blur(.3px);
    transform: scale(.985);
}

/* odaktaki kart */
.grid.showcase:hover .shot:hover {
    opacity: 1;
    filter: none;
    box-shadow: 0 26px 64px rgba(0, 0, 0, .60);
    transform:
        translateY(-10px)
        rotateX(var(--rx, 0deg))
        rotateY(var(--ry, 0deg))
        scale(1.03);
}

.grid.showcase:hover .shot:hover::after {
    opacity: 1;
}

.grid.showcase:hover .shot:hover img {
    transform: scale(1.06);
}

/* mobil / dokunmatik: tilt & spotlight kapalı */
@media (hover: none), (pointer: coarse) {
    .grid.showcase {
        grid-template-columns: 1fr;
    }
    .grid.showcase:hover .shot {
        opacity: 1;
        filter: none;
        transform: none;
    }
    .grid.showcase .shot::after {
        display: none;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .grid.showcase .shot,
    .grid.showcase .shot img,
    .grid.showcase .shot::after {
        transition: none !important;
    }
}

/* Showcase Glass Cards */
.showcase-container {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Kartın Ana Yapısı */
.glass-card {
    position: relative;
    width: 300px;
    height: 420px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: transform 0.4s ease, border 0.4s ease;
    z-index: 1;
}

/* Pinterest'teki Arka Işık Efekti (Glow) */
.glass-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Kartlara Özel Renk Geçişleri */
.lila-glow::before {
    background: linear-gradient(135deg, #E0C3FC, #8EC5FC);
}

.sunset-glow::before {
    background: linear-gradient(135deg, #FA709A, #6157FF);
}

.mint-glow::before {
    background: linear-gradient(135deg, #43E97B, #38F9D7);
}

/* Hover Etkisi: Kartın parlaması */
.glass-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card:hover::before {
    opacity: 0.7;
    filter: blur(60px);
}

/* Yazı Stilleri */
.glass-card .card-content h3 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 20px;
}

.glass-card .card-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

/* Contact */
form {
    display: grid;
    gap: 12px;
}

.two {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

label {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .78);
}

input, select, textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(244, 241, 233, .12);
    background: rgba(0, 0, 0, .35);
    color: var(--ink);
    outline: none;
    transition: border-color .18s ease, background .18s ease;
    font-family: var(--sans);
}

input:focus, select:focus, textarea:focus {
    border-color: rgba(214, 181, 122, .55);
    background: rgba(0, 0, 0, .48);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 13px;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.note {
    font-size: 12px;
    color: var(--muted2);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .sig {
        grid-template-columns: 1fr;
    }
    .showcase {
        grid-template-columns: 1fr;
    }
    .showcase-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .glass-card {
        width: 100%;
        max-width: 400px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, .95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(244, 241, 233, .1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.mobile-open {
        max-height: 400px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(244, 241, 233, .05);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 16px 0;
        width: 100%;
    }
    
    .nav-cta {
        display: none;
    }
    
    section {
        padding: 76px 0;
    }
    
    /* Contact Form Mobile */
    .grid[style*="grid-template-columns: 1.05fr .95fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}

@media (max-width: 560px) {
    .two {
        grid-template-columns: 1fr;
    }
    .nav {
        height: 66px;
        overflow: visible;
    }
    .brand .wordmark span {
        display: none;
    }
    .glass-card {
        width: 100%;
        height: 360px;
        padding: 24px;
    }
    .showcase-container {
        gap: 20px;
        padding: 10px 0;
    }
    
    /* Mobile Menu Position Fix */
    .main-nav {
        top: 66px;
    }
    
    /* Contact Form Mobile - Smaller screens */
    .panel {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}
