/* ============================================
   Erva Cam Balkon — Premium Minimal Design
   ============================================ */

:root {
  --color-bg: #0A0A0A;
  --color-bg-alt: #111111;
  --color-surface: #1A1A1A;
  --color-text: #F5F5F5;
  --color-text-muted: #CCCCCC;
  --color-text-light: #888888;
  --color-accent: #C9A84C;
  --color-accent-dark: #A07830;
  --color-accent-light: #222222;
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  --color-gold-dark: #A07830;
  --color-dark: #0A0A0A;
  --color-border: rgba(201, 168, 76, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
  --radius: 4px;
  --radius-lg: 4px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p + p { margin-top: 1rem; }

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-gold { color: var(--color-gold); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1fb855;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--color-text-muted);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.75) 0%,
    rgba(44, 74, 110, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
  padding: 80px 0;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Stats bar */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--color-gold);
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content .section-label {
  text-align: left;
}

.about-features {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* CTA Banner */
.cta-banner {
  background: var(--color-accent);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--color-accent);
}

.cta-banner .btn-primary:hover {
  background: var(--color-bg);
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.process-number {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold);
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Areas / SEO section */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  padding: 10px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

.contact-form {
  background: var(--color-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

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

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 24px;
  opacity: 0.7;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Content page */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

.content-main h2 {
  margin: 40px 0 16px;
  font-size: 1.75rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.content-main ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
  color: var(--color-text-muted);
}

.content-main li {
  margin-bottom: 8px;
}

.content-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: 0.925rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.sidebar-links a:last-child {
  border-bottom: none;
}

.sidebar-links a:hover {
  color: var(--color-accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Footer */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo-name {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.925rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 100px;
  }
  .hero-aside {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .menu-toggle { display: flex; }
  .header-phone { display: none; }

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

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  section { padding: 64px 0; }
  .hero-content { padding: 48px 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-aside { flex-direction: row; flex-wrap: wrap; }
  .showcase-track { grid-auto-columns: 260px; }
  .hero-badge { display: none; }
}

/* ============================================
   PREMIUM LAYER
   ============================================ */

body.loaded { overflow-x: hidden; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}

.preloader-egepen {
  margin-bottom: 8px;
}

.preloader-egepen-brand {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #fff;
  line-height: 1;
}

.preloader-egepen-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-gold-light);
  margin-top: 4px;
}

.preloader-egepen-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.preloader-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 28px auto;
}

.preloader-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 8px;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 32px auto 0;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--color-gold);
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Transparent header on hero */
.header-transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.header-transparent .logo-name,
.header-transparent .nav-link,
.header-transparent .header-phone {
  color: #fff;
}

.header-transparent .logo-tagline {
  color: rgba(255,255,255,0.5);
}

.header-transparent .nav-link {
  color: rgba(255,255,255,0.75);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
  color: #fff;
}

.header-transparent .menu-toggle span {
  background: #fff;
}

.header-transparent.scrolled {
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-transparent.scrolled .logo-name,
.header-transparent.scrolled .nav-link,
.header-transparent.scrolled .header-phone {
  color: var(--color-text);
}

.header-transparent.scrolled .logo-tagline {
  color: var(--color-text-light);
}

.header-transparent.scrolled .nav-link {
  color: var(--color-text-muted);
}

.header-transparent.scrolled .menu-toggle span {
  background: var(--color-text);
}

.header-transparent .btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}

.header-transparent.scrolled .btn-primary {
  background: var(--color-accent);
  color: #fff;
}

/* Premium buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

/* Premium hero */
.hero-premium {
  min-height: 100svh;
}

.hero-bg-inner {
  position: absolute;
  inset: -8%;
  will-change: transform;
}

.hero-bg-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-premium .hero-overlay {
  background:
    linear-gradient(105deg, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.55) 45%, rgba(26,47,74,0.35) 100%),
    linear-gradient(to top, rgba(12,12,12,0.6) 0%, transparent 40%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: end;
  min-height: calc(100svh - var(--header-height));
  padding-bottom: 120px;
}

.hero-premium .hero-content {
  max-width: 720px;
  padding: 0;
}

.hero-label-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  vertical-align: middle;
  margin-right: 16px;
}

.hero-premium h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero-premium h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  padding: 32px 40px;
  text-align: center;
  color: #fff;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-gold);
}

.hero-badge-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
}

.hero-badge-text {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.7;
}

.hero-mini-card {
  background: rgba(196,162,101,0.12);
  border: 1px solid rgba(196,162,101,0.3);
  padding: 20px 28px;
  text-align: right;
  color: #fff;
}

.hero-mini-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 4px 0 8px;
}

.hero-mini-card a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.hero-mini-card a:hover {
  color: var(--color-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--color-gold);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.35s; }
.reveal[data-delay="4"] { transition-delay: 0.5s; }
.reveal[data-delay="5"] { transition-delay: 0.65s; }

/* Floating stats */
.stats-floating {
  position: relative;
  z-index: 10;
  margin-top: -64px;
  background: transparent;
  border: none;
  padding: 0 0 48px;
}

.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.stats-floating .stat-number {
  font-size: 2.25rem;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  background: var(--color-dark);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.marquee-dot {
  color: var(--color-gold) !important;
  font-size: 0.6rem !important;
}

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

/* Premium service cards */
.services-premium {
  gap: 20px;
}

.service-card-premium {
  border: none;
  background: transparent;
  border-radius: var(--radius-lg);
}

.service-card-premium .service-card-image {
  aspect-ratio: 3/4;
  position: relative;
}

.service-card-premium .service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  transition: background var(--transition);
}

.service-card-premium:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(26,47,74,0.95) 0%, rgba(12,12,12,0.4) 60%, transparent 100%);
}

.service-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(196,162,101,0.4);
  line-height: 1;
  margin-bottom: auto;
}

.service-card-premium h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card-premium .service-link {
  color: var(--color-gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.service-card-premium:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* Showcase gallery */
.showcase {
  padding: 100px 0 80px;
  overflow: hidden;
}

.showcase-header {
  margin-bottom: 48px;
}

.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar { display: none; }

.showcase-item {
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  transition: transform var(--transition);
}

.showcase-item:hover {
  transform: scale(1.02);
}

.showcase-item-tall {
  height: 360px;
}

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

/* Quote section */
.quote-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 24px;
}

.quote-block footer {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.quote-block cite {
  font-style: normal;
  color: var(--color-gold-dark);
}

/* Dark section */
.section-dark {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 120px 0;
}

.section-dark .section-label {
  color: var(--color-gold);
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .text-muted {
  color: rgba(255,255,255,0.6);
}

.section-dark .about-feature {
  border-bottom-color: rgba(255,255,255,0.1);
}

.section-dark .about-feature h4 {
  color: #fff;
}

.section-dark .about-feature p {
  color: rgba(255,255,255,0.5);
}

.section-dark .about-feature-icon {
  background: rgba(196,162,101,0.15);
  color: var(--color-gold);
}

.section-dark .about-image {
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.section-dark .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.section-dark .btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Premium CTA */
.cta-premium {
  position: relative;
  overflow: hidden;
  background: var(--color-accent-dark);
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,162,101,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(26,47,74,0.5) 0%, transparent 50%);
}

.cta-premium .container {
  position: relative;
  z-index: 1;
}

.cta-premium h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.cta-premium h2 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.cta-premium p {
  margin-bottom: 40px;
}

.section-header .section-title {
  position: relative;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px auto 0;
}

/* ============================================
   EGEPEN BAYİ VURGUSU
   ============================================ */

.logo-egepen-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(196, 162, 101, 0.15);
  border: 1px solid rgba(196, 162, 101, 0.45);
  padding: 4px 10px;
  margin-bottom: 6px;
  border-radius: 2px;
}

.header-transparent .logo-egepen-badge {
  color: var(--color-gold-light);
  background: rgba(196, 162, 101, 0.2);
  border-color: rgba(196, 162, 101, 0.5);
}

.header-transparent.scrolled .logo-egepen-badge {
  color: var(--color-gold-dark);
  background: rgba(196, 162, 101, 0.12);
  border-color: rgba(196, 162, 101, 0.35);
}

.egepen-ribbon {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.egepen-ribbon-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
  padding: 0 24px;
}

.egepen-ribbon-track span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  white-space: nowrap;
}

.home-page .hero-premium {
  padding-top: calc(var(--header-height) + 36px);
}

.egepen-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(196, 162, 101, 0.15);
  border: 1px solid rgba(196, 162, 101, 0.45);
  backdrop-filter: blur(12px);
  padding: 14px 22px;
  margin-bottom: 28px;
  color: #fff;
}

.egepen-hero-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.egepen-hero-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.egepen-hero-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.egepen-hero-card {
  background: linear-gradient(145deg, rgba(196,162,101,0.25) 0%, rgba(12,12,12,0.6) 100%);
  border: 1px solid rgba(196, 162, 101, 0.5);
  backdrop-filter: blur(20px);
  padding: 28px 32px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 280px;
}

.egepen-card-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.egepen-card-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1;
}

.egepen-card-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin: 8px 0 20px;
}

.egepen-card-list {
  list-style: none;
  text-align: left;
  font-size: 0.8rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}

.egepen-card-list li {
  padding: 4px 0;
}

.egepen-stat {
  border-color: rgba(196, 162, 101, 0.4) !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(232, 212, 168, 0.25) 100%) !important;
}

.egepen-stat .stat-number {
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.egepen-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.egepen-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.egepen-brand {
  text-align: center;
  padding: 56px 40px;
  background: var(--color-dark);
  border: 1px solid rgba(196, 162, 101, 0.3);
  position: relative;
}

.egepen-brand::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 162, 101, 0.2);
  pointer-events: none;
}

.egepen-brand-logo {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
  line-height: 1;
}

.egepen-brand-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin: 8px 0 24px;
}

.egepen-brand-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  padding: 10px 20px;
}

.egepen-content .section-title {
  text-align: left;
}

.egepen-content .section-title::after {
  margin: 20px 0 0;
}

.egepen-content .section-label {
  text-align: left;
}

.egepen-features {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.egepen-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.egepen-features li span {
  color: var(--color-gold-dark);
  font-weight: 700;
}

.reveal[data-delay="5"] { transition-delay: 0.65s; }

@media (max-width: 1024px) {
  .egepen-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .egepen-hero-card {
    max-width: 100%;
  }

  .egepen-ribbon-track span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
}


/* ============================================
   ÇALIŞMALARIMIZ - GALERİ SLIDER
   ============================================ */

.calismalar-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.calismalar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.calisma-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.calisma-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.calisma-card-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--color-border);
}

.calisma-card-header h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

/* Slider */
.calisma-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg);
}

.calisma-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.calisma-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  cursor: zoom-in;
}

.calisma-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.calisma-slide:hover img {
  transform: scale(1.04);
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* ============================================
   LİGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 20001;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 20001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(196, 162, 101, 0.5);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  z-index: 20001;
}

/* ============================================
   EGEPEN YETKİLİ BANNER — Hakkımızda
   ============================================ */

.egepen-yetkili-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(196,162,101,0.12) 0%, rgba(26,47,74,0.06) 100%);
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.egepen-yetkili-icon {
  font-size: 1.5rem;
  color: var(--color-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.egepen-yetkili-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.egepen-yetkili-text span {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* logo-egepen-badge on non-transparent header */
.header:not(.header-transparent) .logo-egepen-badge {
  color: var(--color-gold-dark);
  background: rgba(196, 162, 101, 0.1);
  border-color: rgba(196, 162, 101, 0.35);
}

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

@media (max-width: 600px) {
  .calismalar-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .egepen-yetkili-banner {
    flex-direction: column;
    gap: 12px;
  }
}


/* ============================================
   ÇALIŞMALARIMIZ SAYFASI
   ============================================ */

.calisma-page-section {
  padding: 80px 0 100px;
  background: var(--color-bg);
}

/* Filtre sekmeleri */
.calisma-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
  justify-content: center;
}

.calisma-tab {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.calisma-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.calisma-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Kategori bloğu */
.calisma-category {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.calisma-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.calisma-category-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 40px;
}

.calisma-category-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(196,162,101,0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.calisma-category-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.calisma-category-header p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.calisma-cat-btn {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* Sayfa grid — 3 sütun */
.calisma-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Kart */
.calisma-card-count {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-left: auto;
}

.calisma-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

/* Gizleme animasyonu filtre için */
.calisma-category.hidden {
  display: none;
}

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

  .calisma-category-header {
    flex-wrap: wrap;
  }

  .calisma-cat-btn {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .calisma-page-grid {
    grid-template-columns: 1fr;
  }

  .calisma-filter-tabs {
    gap: 8px;
  }

  .calisma-tab {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .calisma-category-num {
    font-size: 2.5rem;
    min-width: 52px;
  }

  .calisma-category-header h2 {
    font-size: 1.35rem;
  }
}


/* ============================================
   3D CAM BALKON HERO SAHNESİ
   ============================================ */

.hero-3d {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: #05111f;
}

/* Tam ekran 3D sahne */
.hero-3d-scene {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  perspective-origin: 55% 45%;
  overflow: hidden;
}

/* GÖK / ARKA PLAN */
.h3d-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    #04090f 0%,
    #071828 30%,
    #0a2240 55%,
    #0d2e55 75%,
    #0f3060 100%
  );
}

/* Şehir silüeti */
.h3d-city {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  opacity: 0.18;
}

.h3d-building {
  background: #1a3a5c;
  position: absolute;
  bottom: 0;
}
.h3d-b1 { left: 5%;  width: 60px;  height: 120px; }
.h3d-b2 { left: 12%; width: 90px;  height: 160px; }
.h3d-b3 { left: 22%; width: 50px;  height: 200px; }
.h3d-b4 { left: 30%; width: 80px;  height: 140px; }
.h3d-b5 { left: 42%; width: 70px;  height: 110px; }

/* ZEMIN */
.h3d-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to top, #020c16 0%, #071626 100%);
  transform: rotateX(0deg);
}

.h3d-floor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(100,160,220,0.04) 80px,
    rgba(100,160,220,0.04) 81px
  ),
  repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(100,160,220,0.04) 80px,
    rgba(100,160,220,0.04) 81px
  );
}

/* DUVAR */
.h3d-wall {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 22%;
  background: linear-gradient(
    160deg,
    #0a1e33 0%,
    #0d2540 50%,
    #081929 100%
  );
}

.h3d-wall::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.015) 48px,
    rgba(255,255,255,0.015) 49px
  );
}

/* ===== ANA CAM BALKON ===== */
.h3d-balcony {
  position: absolute;
  right: 6%;
  top: 12%;
  bottom: 22%;
  width: 46%;
  transform-style: preserve-3d;
  transform: rotateY(-4deg) rotateX(1deg);
  animation: balconyFloat 8s ease-in-out infinite;
}

@keyframes balconyFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(1deg) translateY(0px); }
  50%       { transform: rotateY(-4deg) rotateX(1deg) translateY(-8px); }
}

/* Çerçeve profilleri */
.h3d-frame {
  position: absolute;
  background: linear-gradient(135deg, #8ab4cc 0%, #c8dde8 40%, #8ab4cc 100%);
  border-radius: 2px;
  box-shadow:
    0 0 12px rgba(140, 200, 255, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.5);
  z-index: 3;
}

.h3d-frame-left   { left: 0;   top: 0; bottom: 0; width: 12px; }
.h3d-frame-right  { right: 0;  top: 0; bottom: 0; width: 12px; }
.h3d-frame-top    { top: 0;    left: 0; right: 0; height: 14px; }
.h3d-frame-bottom { bottom: 0; left: 0; right: 0; height: 14px; }

/* Cam paneller */
.h3d-glass {
  position: absolute;
  top: 14px;
  bottom: 14px;
  z-index: 2;
  overflow: hidden;
  border-radius: 1px;
  transition: transform 0.6s ease;
}

.h3d-glass-1 { left:  12px; width: calc(25% - 3px); }
.h3d-glass-2 { left:  calc(25% + 9px); width: calc(25% - 3px); }
.h3d-glass-3 { left:  calc(50% + 6px); width: calc(25% - 3px); }
.h3d-glass-4 { right: 12px; width: calc(25% - 3px); }

/* Cam dokusu */
.h3d-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(120, 180, 230, 0.12) 0%,
      rgba(160, 210, 255, 0.22) 40%,
      rgba(100, 160, 220, 0.08) 60%,
      rgba(80, 140, 200, 0.18) 100%
    );
  backdrop-filter: blur(2px);
}

/* Cam parlaklık / yansıma */
.h3d-glass-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%
  );
  animation: glassShine 4s ease-in-out infinite;
}

@keyframes glassShine {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.h3d-glass-reflect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(100, 180, 255, 0.12) 0%,
    transparent 100%
  );
}

/* Ara dikey profiller */
.h3d-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(135deg, #8ab4cc 0%, #c8dde8 50%, #8ab4cc 100%);
  z-index: 3;
  box-shadow:
    0 0 8px rgba(140,200,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.h3d-divider-1 { left: calc(25% + 4px); }
.h3d-divider-2 { left: calc(50% + 1px); }
.h3d-divider-3 { left: calc(75% - 2px); }

/* Tutamaklar */
.h3d-handle {
  position: absolute;
  width: 6px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #c8dde8, #8ab4cc);
  border-radius: 3px;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.h3d-handle-1 { left:  calc(25% + 17px); }
.h3d-handle-2 { left:  calc(50% + 14px); }

/* ===== YAN PERSPEKTİF PANELİ ===== */
.h3d-side-panel {
  position: absolute;
  right: calc(6% + 46%);
  top: 12%;
  bottom: 22%;
  width: 4%;
  transform-style: preserve-3d;
  transform: rotateY(70deg) translateX(-2px);
  transform-origin: right center;
  background: linear-gradient(90deg, #071525 0%, #0d2540 100%);
  z-index: 1;
}

.h3d-side-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(80,140,200,0.15),
    rgba(120,180,230,0.35)
  );
}

.h3d-side-frame-v {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, #8ab4cc, #c8dde8);
}

/* ===== KÜPEŞTE / KORKULUK ===== */
.h3d-railing {
  position: absolute;
  right: 6%;
  bottom: 22%;
  width: 46%;
  height: 48px;
  z-index: 4;
  transform: translateY(0px);
  animation: balconyFloat 8s ease-in-out infinite;
}

.h3d-rail-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8ab4cc 0%, #ddeeff 50%, #8ab4cc 100%);
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(140,200,255,0.5);
}

.h3d-rail-b1,
.h3d-rail-b2,
.h3d-rail-b3,
.h3d-rail-b4,
.h3d-rail-b5 {
  position: absolute;
  top: 6px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8ab4cc, rgba(138,180,204,0.3));
  border-radius: 2px;
}
.h3d-rail-b1 { left: 10%; }
.h3d-rail-b2 { left: 25%; }
.h3d-rail-b3 { left: 50%; }
.h3d-rail-b4 { left: 75%; }
.h3d-rail-b5 { left: 90%; }

/* ===== IŞIK HUZMELERİ ===== */
.h3d-light-beam {
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(140, 200, 255, 0.08) 30%,
    rgba(140, 200, 255, 0.15) 50%,
    rgba(140, 200, 255, 0.08) 70%,
    transparent 100%
  );
  filter: blur(4px);
  animation: lightPulse 6s ease-in-out infinite;
}

.h3d-light-1 { left: 52%; animation-delay: 0s; }
.h3d-light-2 { left: 78%; animation-delay: 2s; }

@keyframes lightPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(3); }
}

/* ===== PARÇACIKLAR ===== */
.h3d-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.h3d-particles span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(140, 200, 255, 0.6);
  animation: particleFloat 10s linear infinite;
}

.h3d-particles span:nth-child(1)  { left: 55%; bottom: 30%; animation-duration: 9s;  animation-delay: 0s; }
.h3d-particles span:nth-child(2)  { left: 62%; bottom: 40%; animation-duration: 12s; animation-delay: 1s; }
.h3d-particles span:nth-child(3)  { left: 70%; bottom: 25%; animation-duration: 8s;  animation-delay: 2s; }
.h3d-particles span:nth-child(4)  { left: 75%; bottom: 50%; animation-duration: 14s; animation-delay: 0.5s; }
.h3d-particles span:nth-child(5)  { left: 80%; bottom: 35%; animation-duration: 11s; animation-delay: 3s; }
.h3d-particles span:nth-child(6)  { left: 58%; bottom: 60%; animation-duration: 10s; animation-delay: 1.5s; }
.h3d-particles span:nth-child(7)  { left: 66%; bottom: 45%; animation-duration: 13s; animation-delay: 4s; }
.h3d-particles span:nth-child(8)  { left: 72%; bottom: 55%; animation-duration: 7s;  animation-delay: 2.5s; }
.h3d-particles span:nth-child(9)  { left: 85%; bottom: 40%; animation-duration: 15s; animation-delay: 0.8s; }
.h3d-particles span:nth-child(10) { left: 88%; bottom: 28%; animation-duration: 9s;  animation-delay: 3.5s; }

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

/* ===== OVERLAY ===== */
.hero-3d-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(4, 10, 20, 0.92) 0%,
      rgba(4, 10, 20, 0.75) 40%,
      rgba(4, 10, 20, 0.15) 70%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(4, 10, 20, 0.7) 0%,
      transparent 40%
    );
  z-index: 2;
}

/* Hero içerik z-index düzeltme */
.hero-3d .container {
  position: relative;
  z-index: 3;
}

.hero-3d .hero-scroll {
  z-index: 3;
}

/* Cam paneli hover efekti — mouse etkileşimi */
.hero-3d-scene:hover .h3d-glass-2 {
  transform: translateX(-10px);
}

.hero-3d-scene:hover .h3d-glass-3 {
  transform: translateX(-12px);
}

/* Responsive */
@media (max-width: 1024px) {
  .h3d-balcony,
  .h3d-railing {
    right: 2%;
    width: 52%;
  }
  .h3d-side-panel {
    right: calc(2% + 52%);
  }
}

@media (max-width: 768px) {
  .h3d-balcony {
    right: -5%;
    width: 65%;
    top: auto;
    bottom: 5%;
    height: 55%;
    opacity: 0.4;
  }
  .h3d-railing {
    right: -5%;
    width: 65%;
    bottom: 5%;
    opacity: 0.4;
  }
  .h3d-side-panel {
    display: none;
  }
  .hero-3d-overlay {
    background:
      linear-gradient(
        to right,
        rgba(4, 10, 20, 0.95) 0%,
        rgba(4, 10, 20, 0.85) 60%,
        rgba(4, 10, 20, 0.5) 100%
      ),
      linear-gradient(
        to top,
        rgba(4, 10, 20, 0.8) 0%,
        transparent 50%
      );
  }
}


/* ============================================
   SİNEMATİK 3D HERO — THREE.JS
   ============================================ */

.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #030810;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

/* Vignette */
.cin-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.65) 100%
  );
  pointer-events: none;
}

/* Scanlines — sinematik efekt */
.cin-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}

/* Film grain */
.cin-grain {
  position: absolute;
  inset: -50%;
  z-index: 2;
  width: 200%;
  height: 200%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainAnim 0.5s steps(2) infinite;
  pointer-events: none;
}
@keyframes grainAnim {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,-1%); }
  50%  { transform: translate(1%,2%); }
  75%  { transform: translate(-1%,1%); }
  100% { transform: translate(2%,-2%); }
}

/* Progress bar */
.cin-progress {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  transition: opacity 0.8s ease;
}
.cin-progress.hidden { opacity: 0; pointer-events: none; }

.cin-progress-track {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 10px;
  overflow: hidden;
}
.cin-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), #fff, var(--color-gold));
  transition: width 0.1s linear;
}
.cin-progress-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Ana içerik */
.cin-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--header-height) + 36px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.cin-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo / başlık reveal */
.cin-logo-reveal {
  color: #fff;
}

.cin-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(196,162,101,0.4);
  background: rgba(196,162,101,0.08);
  padding: 6px 14px;
  margin-bottom: 24px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.cin-content.visible .cin-badge {
  clip-path: inset(0 0% 0 0);
}

.cin-title {
  margin-bottom: 20px;
}
.cin-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  overflow: hidden;
}
.cin-title-line::after {
  content: attr(id);
  display: none;
}

.cin-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin-top: 10px;
}
.cin-title-sub em {
  font-style: italic;
  color: var(--color-gold-light);
}

.cin-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
}
.cin-content.visible .cin-desc {
  opacity: 1;
  transform: translateY(0);
}

.cin-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 1.5s, transform 0.8s ease 1.5s;
}
.cin-content.visible .cin-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Bilgi kartı — sağ taraf */
.cin-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 32px 28px;
  min-width: 220px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease 1.8s, transform 0.8s ease 1.8s;
}
.cin-content.visible .cin-info-card {
  opacity: 1;
  transform: translateX(0);
}

.cin-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cin-stat {
  text-align: center;
  color: #fff;
}
.cin-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
}
.cin-stat > span:nth-child(2) {
  font-size: 1.2rem;
  color: var(--color-gold);
}
.cin-stat-lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.cin-egepen-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 16px;
  border: 1px solid rgba(196,162,101,0.3);
  background: rgba(196,162,101,0.06);
  margin-bottom: 20px;
}
.cin-egepen-badge strong {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}
.cin-egepen-badge span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold-light);
}
.cin-egepen-badge small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.cin-keşif-btn {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.cin-keşif-btn:hover { color: #fff; }

/* Scroll indicator */
.cin-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.8s ease 2.5s, color 0.3s;
}
.cin-scroll.visible { opacity: 1; }
.cin-scroll:hover { color: var(--color-gold); }

.cin-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .cin-content {
    grid-template-columns: 1fr;
  }
  .cin-info-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .cin-title-line {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .cin-title-sub {
    font-size: 1.2rem;
  }
}


/* ============================================
   FOTOĞRAF ÇERÇEVELERİ — Premium Frame System
   ============================================ */

/* ── Hizmetler sayfası — düz service-card ───── */
.service-card:not(.service-card-premium) .service-card-image {
  position: relative;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.service-card:not(.service-card-premium) .service-card-image::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(196, 162, 101, 0.35);
  z-index: 1;
  pointer-events: none;
  transition: border-color var(--transition);
}

.service-card:not(.service-card-premium) .service-card-image::after {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  background: linear-gradient(
    135deg,
    rgba(196,162,101,0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(196,162,101,0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:not(.service-card-premium):hover .service-card-image::before {
  border-color: rgba(196, 162, 101, 0.7);
}

.service-card:not(.service-card-premium):hover .service-card-image::after {
  opacity: 1;
}

/* Köşe süslemeleri — hizmetler kartı */
.service-card:not(.service-card-premium) .service-card-image img {
  position: relative;
  z-index: 0;
  display: block;
}

/* ── Ana sayfa premium servis kartları ──────── */
.service-card-premium .service-card-image {
  position: relative;
}

.service-card-premium .service-card-image::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.5s ease;
}

/* Köşe braketleri */
.service-card-premium .service-card-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-premium:hover .service-card-image::before {
  border-color: rgba(196, 162, 101, 0.4);
}

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

/* Sağ-alt köşe — pseudo olmadığı için wrapper ile yapıyoruz */
.service-card-premium .service-card-overlay {
  /* Var olan overlay'e sağ-alt köşe braket ekle */
  position: absolute;
  inset: 0;
}

.service-card-premium .service-card-overlay::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card-premium:hover .service-card-overlay::before {
  opacity: 1;
}

/* ── Showcase track fotoğrafları ─────────────── */
.showcase-item {
  position: relative;
}

.showcase-item::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 162, 101, 0.25);
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.showcase-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 2px solid rgba(196,162,101,0.6);
  border-left: 2px solid rgba(196,162,101,0.6);
  z-index: 2;
  pointer-events: none;
}

.showcase-item:hover::before {
  border-color: rgba(196, 162, 101, 0.6);
}

/* ── About section — hakkımızda resmi ──────── */
.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196, 162, 101, 0.3);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  z-index: 2;
  pointer-events: none;
}

/* ── Çalışmalar slider fotoğrafları ─────────── */
.calisma-slide {
  position: relative;
}

.calisma-slide::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(196, 162, 101, 0.2);
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

/* Köşe sol-üst */
.calisma-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 2px solid rgba(196,162,101,0.5);
  border-left: 2px solid rgba(196,162,101,0.5);
  z-index: 2;
  pointer-events: none;
}

.calisma-slide:hover::before {
  border-color: rgba(196, 162, 101, 0.55);
}

/* Çerçeve içi hafif parlaklık katmanı */
.calisma-slide img,
.showcase-item img,
.service-card:not(.service-card-premium) .service-card-image img {
  transition: transform 0.55s ease, filter 0.4s ease;
}

.calisma-slide:hover img {
  filter: brightness(1.06) contrast(1.04);
}

.showcase-item:hover img {
  filter: brightness(1.05);
}

/* ── PVC & alt sayfa içerik görseli ─────────── */
.content-main img {
  position: relative;
  border: 1px solid var(--color-border);
  padding: 8px;
  background: var(--color-surface);
  box-shadow:
    0 0 0 1px rgba(196,162,101,0.2),
    var(--shadow-md);
}

/* ── Gallery grid (varsa) ────────────────────── */
.gallery-item {
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(196, 162, 101, 0.22);
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.gallery-item:hover::before {
  border-color: rgba(196, 162, 101, 0.55);
}

/* Tüm çerçevelerin üst-sol köşe etiketi */
.service-card:not(.service-card-premium) .service-card-image {
  box-shadow:
    inset 0 0 0 1px rgba(196,162,101,0.08),
    0 2px 12px rgba(0,0,0,0.06);
}

/* Hizmetler sayfası kart — köşe braket CSS only */
.service-card:not(.service-card-premium) {
  position: relative;
}

.service-card:not(.service-card-premium)::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  z-index: 4;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.service-card:not(.service-card-premium)::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 22px; height: 22px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  z-index: 4;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.service-card:not(.service-card-premium):hover::before {
  border-color: var(--color-gold);
}

.service-card:not(.service-card-premium):hover::after {
  border-color: var(--color-gold);
}


/* ============================================
   FLOAT BUTTONS — WhatsApp + Telefon
   ============================================ */

.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Telefon butonu */
.call-float {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(196, 162, 101, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: callPulse 2.5s ease infinite;
}

.call-float svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(196, 162, 101, 0.2);
  animation: none;
}

@keyframes callPulse {
  0%   { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 0 rgba(196,162,101,0.5); }
  60%  { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 10px rgba(196,162,101,0); }
  100% { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 0 rgba(196,162,101,0); }
}

/* WhatsApp butonu — wrapper içindeyken position:relative */
.float-buttons .whatsapp-float {
  position: relative;
  bottom: auto;
  right: auto;
}

/* Tooltip etiketleri */
.call-float::before,
.float-buttons .whatsapp-float::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 20, 35, 0.92);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.call-float:hover::before,
.float-buttons .whatsapp-float:hover::before {
  opacity: 1;
}

@media (max-width: 480px) {
  .float-buttons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .call-float {
    width: 46px;
    height: 46px;
  }
  .call-float svg {
    width: 19px;
    height: 19px;
  }
}


/* ============================================
   HERO İÇERİK GÖRÜNÜRLÜĞü — Kontrast Artırma
   ============================================ */

/* Erva Yapı başlık — daha belirgin */
.cin-title-line {
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.9),
    0 4px 40px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(0, 0, 0, 0.5);
}

.cin-title-sub {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.85),
    0 4px 30px rgba(0, 0, 0, 0.6);
}

.cin-desc {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.cin-badge {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  background: rgba(196, 162, 101, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sağ taraf bilgi kartı — daha belirgin arka plan */
.cin-info-card {
  background: rgba(4, 10, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Stat sayıları — gölge ekle */
.cin-stat-num {
  text-shadow:
    0 2px 12px rgba(196, 162, 101, 0.5),
    0 0 30px rgba(196, 162, 101, 0.3);
}

.cin-stat-lbl {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Egepen badge kartı */
.cin-egepen-badge {
  background: rgba(196, 162, 101, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cin-egepen-badge strong {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Sol taraf logo bölgesi için koyu arka plan gradient — canvas üzerinde */
.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(2, 8, 16, 0.75) 0%,
      rgba(2, 8, 16, 0.5) 35%,
      rgba(2, 8, 16, 0.1) 55%,
      transparent 70%
    ),
    linear-gradient(
      to top,
      rgba(2, 8, 16, 0.6) 0%,
      transparent 35%
    );
}

/* İçerik z-index — overlay'in üstünde */
.cin-content {
  z-index: 6 !important;
}
.cin-scroll {
  z-index: 6 !important;
}
.cin-progress {
  z-index: 6 !important;
}


/* ============================================
   PREMIUM UPGRADE — Tüm Site
   Yapı değişmeden görsel kalite artışı
   ============================================ */

/* ── GENEL TİPOGRAFİ İYİLEŞTİRME ─────────── */
body {
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  text-rendering: optimizeLegibility;
}

.section-title {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .section-title {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HEADER PREMIUM ──────────────────────────── */
.header {
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(196, 162, 101, 0.1);
}

.nav-link {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  box-shadow: 0 4px 15px rgba(26, 47, 74, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(26, 47, 74, 0.35);
  transform: translateY(-2px);
}

/* ── PAGE HERO (iç sayfalar) PREMIUM ─────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 162, 101, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100, 180, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

.page-hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ── KARTLAR PREMIUM ─────────────────────────── */
.service-card:not(.service-card-premium) {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 221, 214, 0.6);
}

.service-card:not(.service-card-premium):hover {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(196, 162, 101, 0.15);
}

.service-card-body h3 {
  transition: color 0.3s ease;
}

.service-card:hover .service-card-body h3 {
  color: var(--color-accent);
}

/* ── SERVICE LINK PREMIUM ────────────────────── */
.service-link {
  position: relative;
  overflow: hidden;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.35s ease;
}

.service-link:hover::after {
  width: 100%;
}

/* ── GLASS CARD PREMIUM ──────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.glass-card:hover {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(196, 162, 101, 0.2);
}

/* ── STATS BAR PREMIUM ───────────────────────── */
.stat-number {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  -webkit-text-fill-color: initial;
  background: none;
}

.egepen-stat .stat-number {
  -webkit-text-fill-color: initial;
}

/* ── PROCESS STEPS PREMIUM ───────────────────── */
.process-step {
  position: relative;
  transition: transform 0.4s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}

.process-step:hover::after {
  width: 60%;
}

.process-number {
  transition: all 0.35s ease;
}

.process-step:hover .process-number {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.4);
}

/* ── AREA TAGS PREMIUM ───────────────────────── */
.area-tag {
  position: relative;
  overflow: hidden;
}

.area-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.08), rgba(26, 47, 74, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-tag:hover::before {
  opacity: 1;
}

.area-tag:hover {
  box-shadow: 0 4px 12px rgba(26, 47, 74, 0.12);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ── CTA BANNER PREMIUM ──────────────────────── */
.cta-banner:not(.cta-premium) {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner:not(.cta-premium)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196, 162, 101, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* ── QUOTE SECTION PREMIUM ───────────────────── */
.quote-block p {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 60%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT SECTION PREMIUM ───────────────────── */
.about-feature {
  transition: all 0.3s ease;
  padding: 20px 16px;
  margin: 0 -16px;
  border-radius: var(--radius-lg);
}

.about-feature:hover {
  background: rgba(196, 162, 101, 0.04);
}

.section-dark .about-feature:hover {
  background: rgba(196, 162, 101, 0.06);
}

.about-feature-icon {
  transition: all 0.35s ease;
}

.about-feature:hover .about-feature-icon {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(196, 162, 101, 0.3);
}

/* ── FOOTER PREMIUM ──────────────────────────── */
.footer {
  background: #0A0A0A;
  position: relative;
}

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

.footer-col a {
  position: relative;
  display: inline-block;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-social a {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ── SIDEBAR CARD PREMIUM ────────────────────── */
.sidebar-card {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.4s ease;
}

.sidebar-card:hover::before {
  height: 100%;
}

.sidebar-card:hover {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ── CONTACT FORM PREMIUM ────────────────────── */
.contact-form {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s ease;
}

.contact-form:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

/* ── BTN OUTLINE PREMIUM ─────────────────────── */
.btn-outline {
  position: relative;
  overflow: hidden;
}

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

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

/* ── WHATSAPP & CALL FLOAT PREMIUM ───────────── */
.float-buttons {
  animation: floatIn 0.8s ease 2s backwards;
}

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

/* ── SHOWCASE PREMIUM ────────────────────────── */
.showcase-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* ── MARQUEE PREMIUM ─────────────────────────── */
.marquee {
  background: #0A0A0A;
  border-color: rgba(201, 168, 76, 0.15);
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.85);
}

/* ── EGEPEN SECTION PREMIUM ──────────────────── */
.egepen-brand {
  position: relative;
  overflow: hidden;
}

.egepen-brand::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(196, 162, 101, 0.08) 0%, transparent 60%);
  animation: brandGlow 6s ease-in-out infinite;
}

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

/* ── CONTENT PAGES PREMIUM ───────────────────── */
.content-main h2 {
  position: relative;
  padding-bottom: 12px;
}

.content-main h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

/* ── MAP CONTAINER PREMIUM ───────────────────── */
.map-container {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.map-container:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── CONTACT INFO ITEMS PREMIUM ──────────────── */
.contact-info-item {
  transition: all 0.3s ease;
  padding-left: 8px;
  border-left: 2px solid transparent;
}

.contact-info-item:hover {
  border-left-color: var(--color-gold);
  padding-left: 16px;
}

.contact-info-icon {
  transition: all 0.35s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(26, 47, 74, 0.15);
}

/* ── EGEPEN YETKILI BANNER PREMIUM ───────────── */
.egepen-yetkili-banner {
  position: relative;
  overflow: hidden;
}

.egepen-yetkili-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(196, 162, 101, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── BREADCRUMB PREMIUM ──────────────────────── */
.breadcrumb a {
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1 !important;
  color: var(--color-gold-light);
}

/* ── GENEL GEÇİŞ İYİLEŞTİRMELERİ ───────────── */
* {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(196, 162, 101, 0.25);
  color: var(--color-text);
}

/* Smooth scroll davranışı */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ── PRELOADER PREMIUM ───────────────────────── */
.preloader {
  background: #0A0A0A;
}

.preloader-egepen-brand {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.preloader-logo {
  text-shadow: 0 0 30px rgba(196, 162, 101, 0.2);
}


/* ============================================
   FOTOĞRAF KALİTE — Yerel Görseller
   ============================================ */
.service-card-image img,
.service-card-premium .service-card-image img,
.showcase-item img,
.about-image img,
.calisma-slide img,
.content-main img,
.gallery-item img {
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}


/* ============================================
   SHOWCASE — Sinematik Otomatik Slider
   ============================================ */

.showcase {
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
}

/* Kenarlar fade efekti */
.showcase::before,
.showcase::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}
.showcase::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}
.showcase::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.showcase-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 6;
}

/* Slider container */
.showcase-slider {
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.showcase-slider + .showcase-slider {
  margin-top: 16px;
}

/* Track — sonsuz döngü */
.showcase-slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Sola kayan animasyon */
.showcase-slider-left .showcase-slider-track {
  animation: slideLeft 35s linear infinite;
}

/* Sağa kayan animasyon */
.showcase-slider-right .showcase-slider-track {
  animation: slideRight 40s linear infinite;
}

/* Hover'da duraklat */
.showcase-slider:hover .showcase-slider-track {
  animation-play-state: paused;
}

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

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

/* Her bir slide */
.showcase-slide {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.showcase-slide:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(196, 162, 101, 0.3);
  z-index: 10;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.showcase-slide:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.03);
}

/* Slide overlay — hover'da kategori gösterimi */
.showcase-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.showcase-slide:hover::before {
  opacity: 1;
}

/* Köşe çerçeve — altın */
.showcase-slide::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 162, 101, 0.0);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.showcase-slide:hover::after {
  border-color: rgba(196, 162, 101, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .showcase-slide {
    width: 260px;
    height: 180px;
  }
  .showcase::before,
  .showcase::after {
    width: 60px;
  }
  .showcase-slider-left .showcase-slider-track {
    animation-duration: 25s;
  }
  .showcase-slider-right .showcase-slider-track {
    animation-duration: 30s;
  }
}

@media (max-width: 480px) {
  .showcase-slide {
    width: 220px;
    height: 155px;
  }
}


/* ============================================
   HİZMETLER — Koyu Kutucuk Kartlar
   ============================================ */

.hizmetler-dark {
  background: #111111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Arka plan dekoratif ışık */
.hizmetler-dark::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(196, 162, 101, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hizmetler-dark .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.hizmetler-dark .section-title {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hizmetler-dark .section-label {
  color: var(--color-gold);
}

.hizmetler-dark .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.hizmetler-dark .section-title::after {
  background: var(--color-gold);
}

/* Grid — 3 sütun, 2 satır */
.hizmet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Kart */
.hizmet-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: #1A1A1A;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

/* Sol kenar altın çizgi — hover'da büyür */
.hizmet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  transition: height 0.5s ease;
  z-index: 2;
  box-shadow: 0 0 15px var(--color-gold);
}

.hizmet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  transition: all 0.4s ease;
}

.hizmet-card:hover::after {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 100%);
}

.hizmet-card:hover::before {
  height: 100%;
}

.hizmet-card:hover {
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 50px rgba(201, 168, 76, 0.4), 0 0 30px rgba(201, 168, 76, 0.2);
}

/* İkon */
.hizmet-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.1));
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1;
}

.hizmet-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.hizmet-card:hover .hizmet-card-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  transform: scale(1.15) rotate(5deg);
  border-color: var(--color-gold);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

.hizmet-card:hover .hizmet-card-icon svg {
  color: var(--color-dark);
  transform: scale(1.1);
}

/* Başlık */
.hizmet-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hizmet-card:hover h3 {
  color: var(--color-gold-light);
  transform: translateX(5px);
}

/* Açıklama */
.hizmet-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hizmet-card:hover p {
  color: var(--color-text);
}

/* Ok ikonu */
.hizmet-card-arrow {
  font-size: 1.2rem;
  color: rgba(201, 168, 76, 0.4);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  align-self: flex-end;
}

.hizmet-card:hover .hizmet-card-arrow {
  color: var(--color-gold);
  transform: translateX(6px);
}

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

@media (max-width: 600px) {
  .hizmet-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hizmet-card {
    padding: 28px 22px 22px;
  }
}


/* ============================================
   EK ANİMASYONLAR — Site Geneli
   ============================================ */

/* ── Fade-in varyantları ─────────────────────── */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Stagger delay classes ───────────────────── */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── Sayaç animasyonu pulse ──────────────────── */
@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.stat-number.counted {
  animation: countPulse 0.5s ease;
}

/* ── Hizmet kartları sıralı giriş ────────────── */
.hizmet-card:nth-child(1) { transition-delay: 0.05s; }
.hizmet-card:nth-child(2) { transition-delay: 0.12s; }
.hizmet-card:nth-child(3) { transition-delay: 0.19s; }
.hizmet-card:nth-child(4) { transition-delay: 0.26s; }
.hizmet-card:nth-child(5) { transition-delay: 0.33s; }
.hizmet-card:nth-child(6) { transition-delay: 0.40s; }

/* ── Section divider animasyonlu çizgi ───────── */
.section-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-divider.visible {
  width: 200px;
}

/* ── Floating badge animasyonu ───────────────── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.egepen-stat {
  animation: floatBadge 4s ease-in-out infinite;
}

.glass-card:nth-child(2) { animation: floatBadge 4s ease-in-out 0.5s infinite; }
.glass-card:nth-child(3) { animation: floatBadge 4s ease-in-out 1.0s infinite; }
.glass-card:nth-child(4) { animation: floatBadge 4s ease-in-out 1.5s infinite; }

/* ── Process step bağlantı çizgisi ───────────── */
.process-grid {
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--color-gold) 20%,
    var(--color-gold) 80%,
    transparent
  );
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

/* ── Typing cursor efekti — quote ────────────── */
.quote-block p::after {
  content: '|';
  font-weight: 100;
  color: var(--color-gold);
  animation: blink 1.2s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ── About feature ikonları dönerek giriş ────── */
.about-feature-icon {
  animation: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:nth-child(1) .about-feature-icon { transition-delay: 0.1s; }
.about-feature:nth-child(2) .about-feature-icon { transition-delay: 0.2s; }
.about-feature:nth-child(3) .about-feature-icon { transition-delay: 0.3s; }

/* ── Area tag ripple hover efekti ────────────── */
@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(196, 162, 101, 0.3); }
  100% { box-shadow: 0 0 0 12px rgba(196, 162, 101, 0); }
}

.area-tag:hover {
  animation: ripple 0.6s ease;
}

/* ── Footer link stagger reveal ──────────────── */
.footer-col a {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.footer-col.visible a { opacity: 1; transform: translateX(0); }
.footer-col.visible a:nth-child(1) { transition-delay: 0.05s; }
.footer-col.visible a:nth-child(2) { transition-delay: 0.1s; }
.footer-col.visible a:nth-child(3) { transition-delay: 0.15s; }
.footer-col.visible a:nth-child(4) { transition-delay: 0.2s; }
.footer-col.visible a:nth-child(5) { transition-delay: 0.25s; }

/* ── Marquee parallax depth ──────────────────── */
.marquee-track span {
  transition: transform 0.3s ease;
}

.marquee:hover .marquee-track span {
  transform: scale(1.02);
}

/* ── CTA button shimmer ──────────────────────── */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

/* ── WhatsApp buton nefes animasyonu ─────────── */
.whatsapp-float {
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50%      { transform: scale(1.06); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6); }
}

.float-buttons .whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ── Egepen ribbon parlaklık geçişi ──────────── */
.egepen-ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: ribbonShine 5s ease infinite;
}

@keyframes ribbonShine {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* ── Page hero text reveal ───────────────────── */
.page-hero h1 {
  animation: revealDown 0.8s ease backwards;
  animation-delay: 0.3s;
}

.page-hero p {
  animation: revealDown 0.8s ease backwards;
  animation-delay: 0.5s;
}

.breadcrumb {
  animation: revealDown 0.6s ease backwards;
  animation-delay: 0.1s;
}

@keyframes revealDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Sidebar card hover wiggle ───────────────── */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(0.5deg); }
  75%      { transform: rotate(-0.5deg); }
}

.sidebar-card:hover {
  animation: wiggle 0.4s ease;
}

/* ── Image reveal on scroll ──────────────────── */
.about-image img,
.content-main img {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-image.fade-in:not(.visible) img {
  clip-path: inset(0 100% 0 0);
}

/* ── Contact info icon pulse on hover ────────── */
.contact-info-item:hover .contact-info-icon {
  animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1.1); }
}

/* ── Map container tilt on hover ─────────────── */
.map-container {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.map-container:hover {
  transform: perspective(800px) rotateX(1deg) rotateY(-1deg);
}

/* ── Smooth number ticker style ──────────────── */
.stat-number,
.cin-stat-num {
  font-variant-numeric: tabular-nums;
}

/* ── Logo hover subtle glow ──────────────────── */
.logo:hover .logo-name {
  text-shadow: 0 0 20px rgba(196, 162, 101, 0.3);
  transition: text-shadow 0.4s ease;
}

/* ── Nav active dot pulse ────────────────────── */
.nav-link.active::after {
  width: 100%;
  animation: navPulse 2s ease infinite;
}

@keyframes navPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ── Scroll-triggered stagger for grid items ─── */
.areas-grid .area-tag {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.areas-grid.visible .area-tag { opacity: 1; transform: translateY(0) scale(1); }
.areas-grid.visible .area-tag:nth-child(1)  { transition-delay: 0.03s; }
.areas-grid.visible .area-tag:nth-child(2)  { transition-delay: 0.06s; }
.areas-grid.visible .area-tag:nth-child(3)  { transition-delay: 0.09s; }
.areas-grid.visible .area-tag:nth-child(4)  { transition-delay: 0.12s; }
.areas-grid.visible .area-tag:nth-child(5)  { transition-delay: 0.15s; }
.areas-grid.visible .area-tag:nth-child(6)  { transition-delay: 0.18s; }
.areas-grid.visible .area-tag:nth-child(7)  { transition-delay: 0.21s; }
.areas-grid.visible .area-tag:nth-child(8)  { transition-delay: 0.24s; }
.areas-grid.visible .area-tag:nth-child(9)  { transition-delay: 0.27s; }
.areas-grid.visible .area-tag:nth-child(10) { transition-delay: 0.30s; }

/* ── Egepen brand box 3D hover ───────────────── */
.egepen-brand {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.egepen-brand:hover {
  transform: perspective(600px) rotateY(-3deg) rotateX(2deg) scale(1.02);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── Text highlight on scroll ────────────────── */
.content-main p {
  transition: color 0.3s ease;
}

.content-main p:hover {
  color: var(--color-text);
}


/* ============================================
   KOYU TEMA DÜZELTMELERİ
   Tüm bileşenler koyu arka plan + altın aksanla
   ============================================ */

/* ── Body ────────────────────────────────────── */
body {
  background: var(--color-bg);
  color: var(--color-text);
}

/* ── Header ──────────────────────────────────── */
.header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.logo-name {
  color: var(--color-text);
}

.logo-tagline {
  color: var(--color-text-light);
}

.nav-link {
  color: var(--color-text-muted);
}

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

.nav-link::after {
  background: var(--color-gold);
}

.header-phone {
  color: var(--color-gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: var(--shadow-gold);
}

/* ── Mobil menü ──────────────────────────────── */
.nav {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
}

/* ── Page Hero (iç sayfalar) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Service card (hizmetler sayfası) ────────── */
.service-card:not(.service-card-premium) {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.service-card:not(.service-card-premium):hover {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card-body h3 {
  color: var(--color-text);
}

.service-card-body p {
  color: var(--color-text-muted);
}

.service-link {
  color: var(--color-gold);
}

.service-link:hover {
  color: var(--color-gold-light);
}

/* ── Glass cards (istatistik) ────────────────── */
.glass-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-radius: 4px;
}

.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 50px rgba(201, 168, 76, 0.15);
}

.stat-number {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--color-text-muted);
}

.stat-text {
  -webkit-text-fill-color: var(--color-gold);
  background: none;
}

.egepen-stat .stat-number {
  -webkit-text-fill-color: var(--color-gold);
  background: none;
}

.egepen-stat {
  background: rgba(196, 162, 101, 0.08) !important;
  border-color: rgba(196, 162, 101, 0.25) !important;
}

/* ── Stats bar ───────────────────────────────── */
.stats-floating {
  background: transparent;
}

/* ── Section headers ─────────────────────────── */
.section-title {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  color: var(--color-gold);
}

.section-desc {
  color: var(--color-text-muted);
}

.section-header .section-title::after {
  background: var(--color-gold);
}

/* ── Process steps ───────────────────────────── */
.process-step h4 {
  color: var(--color-text);
}

.process-step p {
  color: var(--color-text-muted);
}

.process-number {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ── Areas section ───────────────────────────── */
.area-tag {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

.area-tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(196, 162, 101, 0.06);
}

/* ── Quote section ───────────────────────────── */
.quote-section {
  background: var(--color-bg-alt);
}

.quote-block p {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-gold) 60%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-block footer {
  color: var(--color-text-muted);
}

/* ── About / Dark section ────────────────────── */
.section-dark {
  background: var(--color-dark);
}

/* ── CTA banner ──────────────────────────────── */
.cta-banner:not(.cta-premium) {
  background: var(--color-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-banner:not(.cta-premium) .btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Content pages ───────────────────────────── */
.content-section {
  background: var(--color-bg);
}

.content-main h2 {
  color: var(--color-text);
}

.content-main p {
  color: var(--color-text-muted);
}

.content-main ul {
  color: var(--color-text-muted);
}

.content-main img {
  border-color: var(--color-border);
  background: var(--color-surface);
  box-shadow: 0 0 0 1px rgba(196, 162, 101, 0.15), var(--shadow-md);
}

/* ── Sidebar ─────────────────────────────────── */
.sidebar-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.sidebar-card h3 {
  color: var(--color-text);
}

.sidebar-links a {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-border);
}

.sidebar-links a:hover {
  color: var(--color-gold);
}

/* ── Contact ─────────────────────────────────── */
.contact-form {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.contact-info-item {
  border-bottom-color: var(--color-border);
}

.contact-info-item h4 {
  color: var(--color-text-light);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--color-text);
}

.contact-info-item a:hover {
  color: var(--color-gold);
}

.contact-info-icon {
  background: rgba(196, 162, 101, 0.1);
  color: var(--color-gold);
}

.form-group label {
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: #0A0A0A;
}

.footer-brand .logo-name {
  color: #fff;
}

.footer-brand p {
  color: var(--color-text-muted);
}

.footer-col h4 {
  color: var(--color-gold);
}

.footer-col a {
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top-color: rgba(196, 162, 101, 0.1);
  color: var(--color-text-light);
}

.footer-social a {
  border-color: rgba(196, 162, 101, 0.2);
  color: var(--color-gold);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* ── Buttons ─────────────────────────────────── */
.btn-outline {
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

/* ── Marquee ─────────────────────────────────── */
.marquee {
  background: var(--color-dark);
  border-color: rgba(196, 162, 101, 0.1);
}

.marquee-track span {
  color: var(--color-text);
}

/* ── Egepen section ──────────────────────────── */
.egepen-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border-color: var(--color-border);
}

/* ── Map ─────────────────────────────────────── */
.map-container {
  border-color: var(--color-border);
}

/* ── Breadcrumb ──────────────────────────────── */
.breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ── Egepen yetkili banner ───────────────────── */
.egepen-yetkili-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(26, 26, 26, 0.5) 100%);
  border-color: rgba(201, 168, 76, 0.3);
}

.egepen-yetkili-text strong {
  color: var(--color-gold);
}

.egepen-yetkili-text span {
  color: var(--color-text-muted);
}

/* ── Calismalar ──────────────────────────────── */
.calismalar-section,
.calisma-page-section {
  background: var(--color-bg-alt);
}

.calisma-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.calisma-card:hover {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.calisma-card-header {
  border-bottom-color: var(--color-border);
}

.calisma-card-header h3 {
  color: var(--color-text);
}

.calisma-card-count {
  color: var(--color-text-light);
}

.calisma-tab {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

.calisma-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.calisma-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

.calisma-category {
  border-bottom-color: var(--color-border);
}

.calisma-category-header h2 {
  color: var(--color-text);
}

.calisma-category-header p {
  color: var(--color-text-muted);
}

/* ── Showcase ────────────────────────────────── */
.showcase {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.showcase::before {
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.showcase::after {
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(196, 162, 101, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 162, 101, 0.5);
}

/* ── Selection ───────────────────────────────── */
::selection {
  background: rgba(196, 162, 101, 0.3);
  color: #fff;
}

/* ── Lightbox dark theme ─────────────────────── */
.lightbox {
  background: rgba(0, 0, 0, 0.96);
}

/* ── Logo egepen badge on dark ───────────────── */
.header:not(.header-transparent) .logo-egepen-badge {
  color: var(--color-gold);
  background: rgba(196, 162, 101, 0.1);
  border-color: rgba(196, 162, 101, 0.3);
}

/* ── Transparent header overrides for dark ───── */
.header-transparent {
  background: transparent;
}

.header-transparent .logo-name,
.header-transparent .nav-link,
.header-transparent .header-phone {
  color: #fff;
}

.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
  color: var(--color-gold);
}

.header-transparent.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

.header-transparent.scrolled .logo-name {
  color: var(--color-text);
}

.header-transparent.scrolled .nav-link {
  color: var(--color-text-muted);
}

.header-transparent.scrolled .nav-link:hover,
.header-transparent.scrolled .nav-link.active {
  color: var(--color-gold);
}

.header-transparent.scrolled .header-phone {
  color: var(--color-gold);
}

.header-transparent .btn-primary,
.header-transparent.scrolled .btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
}

/* ── Grain overlay for dark theme ────────────── */
.grain {
  opacity: 0.02;
}

/* ── Fotoğraf çerçeveleri koyu temada ────────── */
.service-card:not(.service-card-premium) .service-card-image {
  background: var(--color-surface);
  border-color: var(--color-border);
}


/* ============================================
   HEADER & STATS FIX — Koyu temada görünürlük
   ============================================ */

/* Header nav linkleri daha belirgin */
.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
  color: var(--color-gold);
}

/* Header scrolled durumda nav */
.header-transparent.scrolled .nav-link {
  color: var(--color-text-muted);
}

.header-transparent.scrolled .nav-link:hover,
.header-transparent.scrolled .nav-link.active {
  color: var(--color-gold);
}

/* Stats kartları — daha belirgin arka plan */
.stats-floating .glass-card {
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.stats-floating .glass-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 12px 50px rgba(201, 168, 76, 0.15), 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* Egepen stat kartı vurgusu */
.stats-floating .egepen-stat {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: rgba(201, 168, 76, 0.35) !important;
}

/* Stat number altın gradient */
.stats-floating .stat-number {
  color: var(--color-gold);
  -webkit-text-fill-color: var(--color-gold);
  background: none;
}

.stats-floating .stat-label {
  color: var(--color-text-muted);
}

/* Logo altın vurgusu */
.header-transparent .logo-name {
  color: #fff;
}

.header-transparent .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.header-transparent .logo-egepen-badge {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Ücretsiz Keşif butonu */
.header-transparent .btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #0A0A0A;
  font-weight: 600;
}

/* Telefon numarası */
.header-transparent .header-phone {
  color: var(--color-gold);
}


/* ============================================
   DARK LUXURY OVERHAUL
   Header + Hero bütünlüğü, premium corporate
   ============================================ */

/* ── HERO SİNEMATİK — Koyu premium ──────────── */
.hero-cinematic {
  background: #050505 !important;
}

/* Canvas overlay — daha koyu, altın aksanlı */
.hero-cinematic::after {
  background:
    linear-gradient(
      to right,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.65) 35%,
      rgba(5, 5, 5, 0.2) 55%,
      transparent 75%
    ),
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.75) 0%,
      rgba(5, 5, 5, 0.3) 25%,
      transparent 50%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.6) 0%,
      transparent 15%
    ) !important;
}

/* Header → Hero geçişi smooth (üstten gelen gradient) */
.egepen-ribbon {
  background: linear-gradient(90deg, #0A0A0A 0%, rgba(201, 168, 76, 0.15) 25%, rgba(201, 168, 76, 0.2) 50%, rgba(201, 168, 76, 0.15) 75%, #0A0A0A 100%) !important;
}

.egepen-ribbon-track span {
  color: var(--color-gold) !important;
  font-weight: 500 !important;
}

/* ── CIN CONTENT — Premium text style ────────── */
.cin-content .cin-title-line {
  color: #ffffff;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(5, 5, 5, 0.8);
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.cin-content .cin-title-sub {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.cin-content .cin-title-sub em {
  color: var(--color-gold-light);
  -webkit-text-fill-color: var(--color-gold-light);
}

.cin-content .cin-desc {
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.cin-badge {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: rgba(201, 168, 76, 0.35) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── INFO CARD — Premium dark ────────────────── */
.cin-info-card {
  background: rgba(10, 10, 10, 0.9) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.7) !important;
}

.cin-stat-num {
  color: var(--color-gold) !important;
  -webkit-text-fill-color: var(--color-gold) !important;
  text-shadow: 0 2px 15px rgba(201, 168, 76, 0.4);
}

.cin-egepen-badge {
  background: rgba(10, 10, 10, 0.8) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.cin-egepen-badge strong {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.cin-egepen-badge span {
  color: var(--color-gold-light) !important;
}

/* ── BUTONLAR — Premium hover ────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%) !important;
  color: #0A0A0A !important;
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.45), 0 0 15px rgba(201, 168, 76, 0.2) !important;
  transform: translateY(-3px) !important;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  color: var(--color-gold-light) !important;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

/* ── HEADER — Premium dark ───────────────────── */
.header-transparent {
  background: rgba(5, 5, 5, 0.4) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.header-transparent.scrolled {
  background: rgba(5, 5, 5, 0.97) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ── STATS BAR — Premium floating ────────────── */
.stats-floating {
  margin-top: -64px;
  position: relative;
  z-index: 10;
}

.stats-floating .glass-card {
  background: rgba(12, 12, 12, 0.95) !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.7) !important;
  border-radius: 4px !important;
}

.stats-floating .glass-card:hover {
  border-color: rgba(201, 168, 76, 0.4) !important;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 168, 76, 0.1) !important;
  transform: translateY(-4px);
}

.stats-floating .egepen-stat {
  border-color: rgba(201, 168, 76, 0.3) !important;
  background: rgba(201, 168, 76, 0.05) !important;
}

/* ── EGEPEN SECTION — Premium dark ───────────── */
.egepen-section {
  background: #0A0A0A !important;
  border-color: rgba(201, 168, 76, 0.08) !important;
}

.egepen-brand {
  background: #050505 !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
}

.egepen-brand::before {
  border-color: rgba(201, 168, 76, 0.12) !important;
}

.egepen-brand-logo {
  color: #fff !important;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.egepen-brand-sub {
  color: var(--color-gold-light) !important;
}

/* ── MARQUEE — Saf siyah ─────────────────────── */
.marquee {
  background: #050505 !important;
  border-top: 1px solid rgba(201, 168, 76, 0.08) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08) !important;
}

/* ── SHOWCASE — Koyu ─────────────────────────── */
.showcase {
  background: #0A0A0A !important;
}

.showcase::before {
  background: linear-gradient(to right, #0A0A0A, transparent) !important;
}

.showcase::after {
  background: linear-gradient(to left, #0A0A0A, transparent) !important;
}

/* ── QUOTE SECTION — Dark ────────────────────── */
.quote-section {
  background: #0A0A0A !important;
}

/* ── SECTION DARK (Hakkımızda) ───────────────── */
.section-dark {
  background: #050505 !important;
}

/* ── PROCESS / NASIL ÇALIŞIYORUZ ─────────────── */
section:not(.hero-cinematic):not(.hizmetler-dark):not(.section-dark):not(.showcase):not(.quote-section):not(.egepen-section) {
  background: #0A0A0A;
}

/* Hizmet bölgeleri kısmı */
section[style*="background: var(--color-bg-alt)"] {
  background: #0e0e0e !important;
}

/* ── CTA PREMIUM — Dark luxury ───────────────── */
.cta-premium {
  background: #050505 !important;
}

.cta-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%) !important;
}

/* ── PROGRESS BAR (3D animasyon) ─────────────── */
.cin-progress-fill {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold)) !important;
}

.cin-progress-label {
  color: rgba(201, 168, 76, 0.5) !important;
}

/* ── VIGNETTE daha güçlü ─────────────────────── */
.cin-vignette {
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(5, 5, 5, 0.7) 100%
  ) !important;
}

/* ── SCROLL INDICATOR ────────────────────────── */
.cin-scroll {
  color: rgba(201, 168, 76, 0.4) !important;
}

.cin-scroll:hover {
  color: var(--color-gold) !important;
}

.cin-scroll-line {
  background: linear-gradient(to bottom, var(--color-gold), transparent) !important;
}

/* ── GENEL BG — hiçbir yerde açık ton kalmasın ─ */
body {
  background: #0A0A0A !important;
}

/* ── NAV — koyu temada okunabilirlik ─────────── */
.nav-link {
  color: rgba(245, 245, 245, 0.7) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold) !important;
}


/* ============================================
   HEADER / NAV — Premium Dark, Gri Kaldırma
   ============================================ */

.header,
.header-transparent,
.header-transparent.scrolled,
.header.scrolled {
  background: #050505 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08) !important;
  height: auto !important;
  padding: 0 !important;
}

.header-inner {
  height: 70px !important;
  padding: 0 !important;
}

.nav {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: all !important;
  display: flex !important;
  align-items: center !important;
  gap: 2.5rem !important;
}

.nav-link {
  background: transparent !important;
  color: rgba(216, 216, 216, 0.8) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0 4px 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  position: relative !important;
  transition: color 0.3s ease !important;
}

.nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 1px !important;
  background: var(--color-gold) !important;
  transition: width 0.3s ease !important;
  border-radius: 0 !important;
}

.nav-link:hover {
  color: var(--color-gold) !important;
  background: transparent !important;
  transform: none !important;
}

.nav-link:hover::after {
  width: 100% !important;
}

.nav-link.active {
  color: var(--color-gold) !important;
  background: transparent !important;
}

.nav-link.active::after {
  width: 100% !important;
  animation: none !important;
  opacity: 1 !important;
}

/* Logo */
.logo {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.logo-name {
  color: #ffffff !important;
  font-size: 1.4rem !important;
}

.logo-tagline {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.6rem !important;
}

.logo-egepen-badge {
  font-size: 0.5rem !important;
  padding: 3px 8px !important;
  margin-bottom: 4px !important;
  color: var(--color-gold) !important;
  background: rgba(201, 168, 76, 0.08) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  border-radius: 2px !important;
}

/* Telefon ve buton */
.header-phone {
  color: var(--color-gold) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.header-cta .btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
  color: #0A0A0A !important;
  font-size: 0.75rem !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  border: none !important;
  border-radius: 2px !important;
}

.header-cta .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3) !important;
  transform: translateY(-1px) !important;
}

/* Menu toggle (mobil) */
.menu-toggle span {
  background: #d8d8d8 !important;
}

/* ── Mobil menü açıldığında ──────────────────── */
@media (max-width: 768px) {
  .nav {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: #0A0A0A !important;
    flex-direction: column !important;
    padding: 24px !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
  }

  .nav.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .nav-link {
    padding: 14px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06) !important;
    font-size: 0.85rem !important;
  }
}


/* ============================================
   HİZMET KARTLARI — Arka Plan Fotoğrafları
   Tetra tarzı: kısık görsel + koyu overlay
   ============================================ */

.hizmet-card {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Her kart için ilgili arka plan görseli */
.hizmet-cards-grid .hizmet-card:nth-child(1) { background-image: url('../images/erva-1.jpeg') !important; }
.hizmet-cards-grid .hizmet-card:nth-child(2) { background-image: url('../images/erva-6.jpeg') !important; }
.hizmet-cards-grid .hizmet-card:nth-child(3) { background-image: url('../images/erva-10.jpeg') !important; }
.hizmet-cards-grid .hizmet-card:nth-child(4) { background-image: url('../images/erva-15.jpeg') !important; }
.hizmet-cards-grid .hizmet-card:nth-child(5) { background-image: url('../images/erva-20.jpeg') !important; }
.hizmet-cards-grid .hizmet-card:nth-child(6) { background-image: url('../images/erva-2.jpeg') !important; }

/* Koyu overlay — görseli kısık gösterir */
.hizmet-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(26, 26, 26, 0.75) 100%) !important;
  z-index: 0 !important;
  transition: all 0.4s ease !important;
}

/* Hover'da overlay biraz açılır — görsel daha belirgin */
.hizmet-card:hover::after {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(10, 10, 10, 0.6) 100%) !important;
}

/* Tüm içerik overlay'in üstünde */
.hizmet-card > * {
  position: relative !important;
  z-index: 1 !important;
}


/* ============================================
   MOBİL UYUMLULUK — Kapsamlı İyileştirme
   ============================================ */

/* ── TABLET (max 1024px) ─────────────────────── */
@media (max-width: 1024px) {

  .hizmet-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .cin-content {
    grid-template-columns: 1fr !important;
    padding-top: calc(var(--header-height) + 40px) !important;
  }

  .cin-info-card {
    display: none !important;
  }

  .cin-title-line {
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .egepen-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .process-grid::before {
    display: none !important;
  }

  .content-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .calismalar-grid,
  .calisma-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── MOBİL (max 768px) ───────────────────────── */
@media (max-width: 768px) {

  :root {
    --header-height: 70px;
  }

  /* Header */
  .header-inner {
    height: 60px !important;
  }

  .header-phone {
    display: none !important;
  }

  .header-cta .btn-primary {
    display: none !important;
  }

  .logo-name {
    font-size: 1.2rem !important;
  }

  .logo-tagline {
    font-size: 0.55rem !important;
  }

  .logo-egepen-badge {
    font-size: 0.45rem !important;
    padding: 2px 6px !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  /* Nav mobil */
  .nav {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    background: #0A0A0A !important;
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
  }

  .nav.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .nav-link {
    padding: 14px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06) !important;
    font-size: 0.9rem !important;
    gap: 0 !important;
  }

  .nav-link::after {
    display: none !important;
  }

  /* Hero 3D */
  .hero-cinematic {
    min-height: 100svh !important;
  }

  .cin-content {
    padding: 0 16px !important;
    padding-top: calc(60px + 60px) !important;
  }

  .cin-title-line {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .cin-title-sub {
    font-size: 1.1rem !important;
  }

  .cin-desc {
    font-size: 0.9rem !important;
  }

  .cin-badge {
    font-size: 0.55rem !important;
    padding: 5px 10px !important;
  }

  .cin-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .cin-actions .btn {
    width: 100% !important;
    text-align: center !important;
  }

  .cin-scroll {
    bottom: 16px !important;
  }

  .cin-progress {
    bottom: 40px !important;
  }

  /* Egepen ribbon */
  .egepen-ribbon {
    height: 28px !important;
  }

  .egepen-ribbon-track span {
    font-size: 0.55rem !important;
  }

  /* Stats */
  .stats-floating {
    margin-top: -40px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .glass-card {
    padding: 20px 14px !important;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  .stat-label {
    font-size: 0.7rem !important;
  }

  /* Sections */
  section {
    padding: 60px 0 !important;
  }

  .section-header {
    margin-bottom: 40px !important;
  }

  .container {
    padding: 0 16px !important;
  }

  /* Hizmetler kartları */
  .hizmet-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hizmet-card {
    padding: 1.8rem 1.5rem !important;
  }

  .hizmet-card-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1rem !important;
  }

  .hizmet-card h3 {
    font-size: 1.05rem !important;
  }

  .hizmet-card p {
    font-size: 0.85rem !important;
  }

  /* Egepen section */
  .egepen-brand {
    padding: 40px 24px !important;
  }

  .egepen-brand-logo {
    font-size: 2rem !important;
  }

  /* Showcase slider */
  .showcase-slide {
    width: 240px !important;
    height: 165px !important;
  }

  .showcase::before,
  .showcase::after {
    width: 40px !important;
  }

  /* Quote */
  .quote-block p {
    font-size: 1.3rem !important;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .about-features {
    gap: 12px !important;
  }

  .about-feature {
    padding: 12px 0 !important;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .process-step {
    padding: 20px 16px !important;
  }

  /* Areas */
  .areas-grid {
    gap: 8px !important;
  }

  .area-tag {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
  }

  /* CTA */
  .cta-banner,
  .cta-premium {
    padding: 60px 0 !important;
  }

  /* Page hero */
  .page-hero {
    padding: calc(60px + 50px) 0 50px !important;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
  }

  /* Content pages */
  .content-grid {
    grid-template-columns: 1fr !important;
  }

  .content-sidebar {
    position: static !important;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-form {
    padding: 24px 20px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  /* Calismalar */
  .calismalar-grid,
  .calisma-page-grid {
    grid-template-columns: 1fr !important;
  }

  .calisma-filter-tabs {
    gap: 6px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
  }

  .calisma-tab {
    flex-shrink: 0 !important;
    padding: 8px 14px !important;
    font-size: 0.7rem !important;
  }

  .calisma-category-header {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .calisma-category-num {
    font-size: 2.5rem !important;
    min-width: auto !important;
  }

  .calisma-cat-btn {
    margin-left: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Float buttons */
  .float-buttons {
    bottom: 16px !important;
    right: 16px !important;
    gap: 10px !important;
  }

  .call-float {
    width: 46px !important;
    height: 46px !important;
  }

  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
  }

  /* Tooltips gizle mobilde */
  .call-float::before,
  .float-buttons .whatsapp-float::before {
    display: none !important;
  }

  /* Service cards (hizmetler.html) */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  /* Map */
  .map-container {
    height: 280px !important;
  }
}

/* ── KÜÇÜK MOBİL (max 400px) ─────────────────── */
@media (max-width: 400px) {

  .cin-title-line {
    font-size: 1.8rem !important;
  }

  .cin-title-sub {
    font-size: 0.95rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .glass-card {
    padding: 16px 12px !important;
  }

  .stat-number {
    font-size: 1.5rem !important;
  }

  .hizmet-card {
    padding: 1.5rem 1.2rem !important;
  }

  .showcase-slide {
    width: 200px !important;
    height: 140px !important;
  }

  .egepen-brand-logo {
    font-size: 1.5rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* ── LANDSCAPE MOBİL ─────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-cinematic {
    min-height: 100vh !important;
  }

  .cin-content {
    padding-top: 80px !important;
  }

  .cin-title-line {
    font-size: 2rem !important;
  }

  .cin-title-sub {
    font-size: 1rem !important;
  }

  .cin-desc {
    display: none !important;
  }

  .cin-actions {
    flex-direction: row !important;
  }
}

/* ── TOUCH CİHAZ İYİLEŞTİRMELERİ ───────────── */
@media (hover: none) {
  /* Hover efektlerini kaldır — touch cihazlarda sorun çıkarmaz */
  .hizmet-card:hover {
    transform: none !important;
  }

  .hizmet-card:active {
    transform: scale(0.98) !important;
    border-color: rgba(201, 168, 76, 0.5) !important;
  }

  .showcase-slide:hover {
    transform: none !important;
  }

  .glass-card:hover {
    transform: none !important;
  }

  .area-tag:hover {
    transform: none !important;
  }

  /* Showcase slider — mobilde duraklama yok */
  .showcase-slider:hover .showcase-slider-track {
    animation-play-state: running !important;
  }
}

/* ── SAFE AREA (iPhone X+ notch) ─────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .float-buttons {
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
  }

  .footer-bottom {
    padding-bottom: calc(32px + env(safe-area-inset-bottom)) !important;
  }
}


/* ── Hemen Arayın butonu mobil fix ───────────── */
@media (max-width: 768px) {
  .cin-actions .btn {
    width: auto !important;
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
  }

  .cin-actions .btn-gold {
    padding: 12px 28px !important;
    font-size: 0.8rem !important;
  }

  .cin-actions .btn-glass {
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
  }

  .cin-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .btn-lg {
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 400px) {
  .cin-actions {
    flex-direction: column !important;
  }

  .cin-actions .btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.8rem !important;
    text-align: center !important;
    justify-content: center !important;
  }
}


/* ============================================
   NASIL ÇALIŞIYORUZ — Timeline Premium
   ============================================ */

.process-section {
  background: #0A0A0A !important;
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}

/* Arka plan dekoratif ışık */
.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Timeline container */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
}

/* Yatay bağlantı çizgisi */
.process-line {
  position: absolute;
  top: 76px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.3) 15%,
    rgba(201, 168, 76, 0.5) 50%,
    rgba(201, 168, 76, 0.3) 85%,
    transparent
  );
  z-index: 0;
}

/* Çizgi üzerinde animasyonlu parlama */
.process-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -20%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  border-radius: 2px;
  animation: lineGlow 4s ease-in-out infinite;
}

@keyframes lineGlow {
  0%   { left: -20%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Her bir kart */
.process-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Numara + dot */
.process-card-num {
  position: relative;
  margin-bottom: 20px;
}

.process-card-num span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  transition: color 0.4s ease;
}

.process-card:hover .process-card-num span {
  color: rgba(201, 168, 76, 0.6);
}

/* Timeline üzerindeki nokta */
.process-card-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0A0A0A;
  border: 2px solid rgba(201, 168, 76, 0.4);
  margin: 12px auto 0;
  position: relative;
  transition: all 0.4s ease;
}

.process-card-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.process-card:hover .process-card-dot {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.process-card:hover .process-card-dot::after {
  opacity: 1;
  transform: scale(1);
}

/* İkon */
.process-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 18px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.process-card:hover .process-card-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-color: var(--color-gold);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.process-card:hover .process-card-icon svg {
  color: #0A0A0A;
  transform: scale(1.1);
}

/* İçerik */
.process-card-content h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.process-card:hover .process-card-content h4 {
  color: var(--color-gold-light);
}

.process-card-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.process-card:hover .process-card-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* Stagger animasyonu */
.process-card:nth-child(2) { transition-delay: 0.1s; }
.process-card:nth-child(3) { transition-delay: 0.2s; }
.process-card:nth-child(4) { transition-delay: 0.3s; }
.process-card:nth-child(5) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }

  .process-card {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 20px;
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 4px;
  }

  .process-card-num {
    margin-bottom: 0;
  }

  .process-card-num span {
    font-size: 1.5rem;
  }

  .process-card-dot {
    display: none;
  }

  .process-card-icon {
    margin: 0;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .process-card-content {
    flex: 1;
  }

  .process-card-content p {
    max-width: none;
  }
}
