/* ============================================
   MERITUS HUKUK — Premium Law Firm Website 2026
   ============================================ */

:root {
  --color-bg: #0a0e17;
  --color-bg-secondary: #111827;
  --color-bg-card: rgba(17, 24, 39, 0.6);
  --color-surface: #1a2234;
  --color-gold: #c9a962;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #a08540;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  --color-border: rgba(201, 169, 98, 0.15);
  --color-success: #10b981;
  --color-error: #ef4444;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.15);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loaded .cursor-glow {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

/* ========== NAV OVERLAY (MOBILE) ========== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ========== PRELOADER — removed ========== */

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== HEADER ENTRANCE ========== */
.header {
  animation: headerSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headerSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
}

.logo-icon svg { width: 100%; height: 100%; }

.logo-text span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--color-text);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-bg) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.hero-aurora {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(8deg) scale(1.1); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  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");
}

.hero-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: grayscale(30%) contrast(1.1);
}

.hero-photo-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, transparent 40%, var(--color-bg) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(201, 169, 98, 0.12);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.08);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(201, 169, 98, 0.06);
  top: 50%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* orbFloat kept for optional use */

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: 24px;
}

.badge-verified {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-line[data-delay="80"]  { animation-delay: 0.08s; }
.reveal-line[data-delay="180"] { animation-delay: 0.18s; }
.reveal-line[data-delay="280"] { animation-delay: 0.28s; }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.title-accent {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark), var(--color-gold-light));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line.title-accent.reveal-line {
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 5s ease-in-out infinite;
  animation-delay: 0.18s, 1.4s;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -12px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-official-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.official-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.official-chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-form-wrapper {
  position: relative;
}

.form-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from var(--ring-angle, 0deg), transparent, var(--color-gold), transparent, var(--color-gold-light), transparent);
  animation: ringRotate 6s linear infinite;
  opacity: 0.5;
  z-index: 0;
}

.form-glow-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
}

@property --ring-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes ringRotate {
  to { --ring-angle: 360deg; }
}

.hero-form-wrapper .form-card {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero-form-wrapper .form-card {
    animation: formFloat 6s ease-in-out infinite;
  }
}

@keyframes formFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== MARQUEE BAR ========== */
.marquee-bar {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  background: linear-gradient(90deg, var(--color-bg-secondary), rgba(201, 169, 98, 0.06), var(--color-bg-secondary));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-secondary), transparent);
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-secondary), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.marquee-dot {
  color: var(--color-gold) !important;
  font-size: 0.5rem !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== INSTITUTIONS BAR ========== */
.institutions-bar {
  padding: 48px 0;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.institutions-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 28px;
}

.institutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.institution-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.institution-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-2px);
}

.institution-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
}

.institution-icon svg { width: 28px; height: 28px; }

.institution-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.institution-card span:not(.inst-verified) {
  font-size: 0.7rem;
  color: var(--color-text-dim);
}

.inst-verified {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.6rem !important;
  font-weight: 600;
  color: var(--color-success) !important;
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
}

/* ========== TRUST SECTION ========== */
.trust-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 50%, var(--color-bg) 100%);
}

.trust-credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.credential-card {
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.credential-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-glow);
}

.credential-card.featured-cred {
  border-color: rgba(201, 169, 98, 0.35);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), var(--color-bg-card));
}

.cred-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cred-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

.cred-icon.gold {
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-gold);
}

.cred-icon svg { width: 22px; height: 22px; }

.cred-status {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-success);
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cred-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.cred-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cred-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 0.7rem;
  color: var(--color-text-dim);
}

.cred-check {
  font-weight: 600;
  color: var(--color-success) !important;
}

.trust-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.trust-banner-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.trust-banner-icon svg { width: 100%; height: 100%; }

.trust-banner-content {
  flex: 1;
}

.trust-banner-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.trust-banner-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.trust-banner-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-banner-badges span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 14px;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.team-bar-no {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-success);
  font-weight: 500;
}

.footer-legal-ids {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.footer-legal-ids span {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  font-family: monospace;
}

.modal-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.modal-trust span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  color: var(--color-success);
}

/* ========== GLASS CARD / FORM ========== */
.glass-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 0 80px rgba(201, 169, 98, 0.2), var(--shadow-card);
}

.form-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.form-official-seal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-sm);
}

.seal-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.seal-icon svg { width: 100%; height: 100%; }

.seal-text {
  flex: 1;
  min-width: 0;
}

.seal-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.seal-text span {
  font-size: 0.7rem;
  color: var(--color-text-dim);
}

.seal-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-success);
  white-space: nowrap;
}

.seal-verified svg {
  width: 18px;
  height: 18px;
}

.form-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.trust-badge-item:hover {
  border-color: rgba(201, 169, 98, 0.2);
}

.trust-badge-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
}

.trust-badge-item span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.trust-badge-item em {
  font-style: normal;
  font-weight: 400;
  color: var(--color-text-dim);
  font-size: 0.6rem;
}

.form-legal-note {
  margin-top: 12px;
  font-size: 0.65rem;
  color: var(--color-text-dim);
  text-align: center;
  line-height: 1.5;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.form-header {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.form-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
}

.form-icon svg { width: 24px; height: 24px; }

.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(201, 169, 98, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}

.form-group input[type="text"].error,
.form-group input[type="email"].error,
.form-group input[type="tel"].error,
.form-group textarea.error,
.form-group input[type="checkbox"].error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 6px;
  min-height: 18px;
}

.checkbox-group {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-sm);
}

.checkbox-group.error-box {
  border-color: var(--color-error);
  background: rgba(239, 68, 68, 0.06);
}

.kvkk-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.kvkk-label .required {
  color: var(--color-error);
}

.checkbox-group .error-msg {
  margin-top: 8px;
}

.checkbox-group .checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.55;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.kvkk-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  flex: 0 0 24px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  border: 2px solid var(--color-gold) !important;
  border-radius: 6px !important;
  background: rgba(10, 14, 23, 0.9) !important;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s;
}

.kvkk-checkbox:hover {
  background: rgba(201, 169, 98, 0.15) !important;
}

.kvkk-checkbox:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}

.kvkk-checkbox:checked {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
}

.kvkk-checkbox:checked::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6px;
  height: 11px;
  border: solid var(--color-bg);
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-text {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.checkbox-group .checkbox-label a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(201, 169, 98, 0.1);
}

.btn-light {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-loader { opacity: 1; }
.btn-submit.loading .btn-arrow { opacity: 0; }

.btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--color-bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.form-note svg {
  width: 14px;
  height: 14px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 50%, var(--color-bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.06), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::after {
  left: 120%;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(201, 169, 98, 0.4);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), var(--color-bg-card));
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap var(--transition-fast);
}

.service-link svg { width: 16px; height: 16px; }

.service-link:hover { gap: 12px; }

/* ========== PHOTO GALLERY ========== */
.gallery {
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 14, 23, 0.9));
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow-card);
  animation: floatImage 6s ease-in-out infinite;
}

.about-image-float img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-bg);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.3);
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.about-features {
  margin-bottom: 36px;
}

.about-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  color: var(--color-success);
}

.feature-icon svg { width: 14px; height: 14px; }

.about-features strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about-features span {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

/* ========== PROCESS ========== */
.process {
  background: var(--color-bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  background: var(--color-bg);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: scale(1.1);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.team-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 23, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.team-social a:hover { transform: scale(1.1); }
.team-social svg { width: 18px; height: 18px; }

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-gold);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 36px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-bg);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(10, 14, 23, 0.7);
  font-size: 1.05rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-gold-light);
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--color-gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.kvkk-text {
  font-size: 0.75rem;
}

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  padding: 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-icon.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
}

.modal-icon svg { width: 36px; height: 36px; }

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-content .btn { width: auto; min-width: 160px; }

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  z-index: 999;
  transform: translateY(100%);
  transition: transform var(--transition);
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn { width: 100%; }

/* ========== SCROLL ANIMATIONS ========== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .institutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-banner {
    flex-direction: column;
    text-align: center;
  }

  .trust-banner-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .hero-form-wrapper {
    max-width: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-timeline::before {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-grid-layout {
    display: flex;
    flex-direction: column;
  }

  .hero-form-wrapper {
    order: -1;
    max-width: 100%;
    width: 100%;
  }

  .hero-content {
    order: 1;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    line-height: 1.4;
    text-align: left;
  }

  .form-trust-badges {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-badge-item span {
    font-size: 0.68rem;
  }

  .checkbox-group {
    padding: 14px;
  }

  .kvkk-checkbox {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    flex: 0 0 28px !important;
  }

  .trust-badge-item {
    padding: 12px 10px;
    flex-direction: row;
    text-align: left;
    gap: 12px;
  }

  .trust-badge-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .trust-badge-item span {
    font-size: 0.72rem;
    text-align: left;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(80px + env(safe-area-inset-top)) 32px 32px;
    gap: 8px;
    transition: right var(--transition);
    border-left: 1px solid var(--color-border);
    z-index: 1000;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .form-official-seal {
    flex-wrap: wrap;
  }

  .seal-verified {
    width: 100%;
    justify-content: center;
  }

  .institutions-grid {
    grid-template-columns: 1fr;
  }

  .trust-credentials-grid {
    grid-template-columns: 1fr;
  }

  .hero-official-strip {
    flex-direction: column;
  }

  .official-chip {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .sticky-cta {
    display: block;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .sticky-cta .btn {
    min-height: 48px;
    font-size: 1rem;
  }

  .institution-card {
    flex-wrap: wrap;
  }

  .inst-verified {
    position: static;
    margin-left: auto;
  }

  .trust-banner {
    padding: 24px 20px;
  }

  .cred-number {
    font-size: 1.25rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .marquee-track span {
    font-size: 0.75rem;
  }

  .hero-scroll {
    display: none;
  }

  .about-experience-badge {
    left: 16px;
    top: 16px;
  }

  .about-image-float {
    right: 16px;
    bottom: -20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track { animation: none; }
  .hero-particles { display: none; }
}

@media (max-width: 480px) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .form-card {
    padding: 20px 16px;
  }

  .form-official-seal {
    flex-direction: column;
    text-align: center;
  }

  .seal-verified {
    width: auto;
  }

  .form-trust-badges {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-stats {
    justify-content: space-between;
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 64px 0;
  }

  .btn, .btn-primary, .btn-submit {
    min-height: 48px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}

/* ========== MOBILE POLISH ========== */
@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(88px + env(safe-area-inset-top));
  }

  .header {
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .header.scrolled {
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .nav {
    min-height: 48px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: calc(96px + env(safe-area-inset-top));
  }

  .hero-bg .hero-photo-layer {
    opacity: 0.22;
  }

  .hero-orb {
    opacity: 0.35;
    filter: blur(40px);
  }

  .form-glow-ring {
    animation: none;
    opacity: 0.22;
  }

  .hero-form-wrapper {
    margin-bottom: 8px;
  }

  .form-card {
    border-radius: var(--radius-md);
  }

  .form-header h2 {
    font-size: 1.25rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    font-size: 16px;
    padding: 13px 16px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .btn-submit,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .checkbox-text {
    font-size: 0.82rem;
  }

  .trust-banner-badges span {
    white-space: normal;
    text-align: center;
  }

  .marquee-bar::before,
  .marquee-bar::after {
    width: 48px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 8px);
    padding: 24px 20px;
  }

  .testimonial-track {
    gap: 16px;
  }

  .testimonials-slider {
    margin: 0 -4px;
  }

  .sticky-cta {
    z-index: 900;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .service-card,
  .institution-card,
  .cred-card {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.15;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .form-header {
    flex-direction: column;
    gap: 12px;
  }

  .form-icon {
    width: 44px;
    height: 44px;
  }

  .official-chip {
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .team-card .team-photo {
    height: 280px;
  }
}

@media (hover: none) {
  .glass-card:hover,
  .service-card:hover,
  .trust-badge-item:hover {
    transform: none;
    box-shadow: var(--shadow-glow), var(--shadow-card);
  }
}
