/* ============================
   GÖKHAN MEMİŞ — PERSONAL SITE
   v2: High contrast + rich effects
   ============================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Custom Properties (HIGH CONTRAST) --- */
:root {
  --bg-primary: #FDFAF6;
  --bg-secondary: #F0EBF8;
  --bg-mint: #E8F6F0;
  --bg-rose: #FDE8ED;
  --bg-sky: #E8F0FA;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A2E;

  --text-primary: #1A1A2E;
  --text-secondary: #44475A;
  --text-muted: #6C6F85;
  --text-light: #9CA0B0;
  --text-on-dark: #F8F8F2;

  --accent-pink: #E84393;
  --accent-purple: #6C5CE7;
  --accent-blue: #0984E3;
  --accent-green: #00B894;
  --accent-coral: #E17055;
  --accent-teal: #00CEC9;

  --accent-pink-soft: #FDCFE0;
  --accent-purple-soft: #D5CCFF;
  --accent-blue-soft: #BEE0FB;
  --accent-green-soft: #B8F0E0;

  --instagram: #E4405F;
  --tiktok: #00C9CA;
  --x-twitter: #14171A;
  --facebook: #1877F2;
  --whatsapp: #25D366;

  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 30px rgba(26,26,46,0.08);
  --shadow-lg: 0 16px 48px rgba(26,26,46,0.12);
  --shadow-glow-pink: 0 0 40px rgba(232,67,147,0.2);
  --shadow-glow-purple: 0 0 40px rgba(108,92,231,0.2);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  line-height: 1.2;
}

/* --- BRAND NAME: Signature style --- */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  background: linear-gradient(135deg, #E84393, #6C5CE7, #0984E3, #E84393);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(108,92,231,0.3));
}

.brand-name::after {
  content: '';
  position: absolute;
  left: 5%;
  bottom: -4px;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, #E84393, #6C5CE7, #0984E3);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section { padding: 6rem 0; }

/* --- Language Toggle (show/hide) --- */
body[data-lang="tr"] .en { display: none !important; }
body[data-lang="en"] .tr { display: none !important; }

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253,250,246,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,46,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(253,250,246,0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.nav-logo:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid rgba(108,92,231,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-left: 1rem;
}

.lang-toggle button {
  padding: 6px 14px;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle button:hover {
  color: var(--accent-purple);
}

.lang-toggle button.active {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-rose) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-greeting {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero .brand-name {
  display: block;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--accent-purple);
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(108,92,231,0.35);
  transition: var(--transition-bounce);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(108,92,231,0.45);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-purple);
  transition: var(--transition-bounce);
}

.hero-cta-secondary:hover {
  background: var(--accent-purple);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(108,92,231,0.3);
}

.hero-photo-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 380px;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 4px solid rgba(255,255,255,0.8);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-photo:hover img {
  transform: scale(1.05);
}

.hero-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(232,67,147,0.25), rgba(108,92,231,0.25));
  filter: blur(30px);
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobFloat 10s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-pink);
  top: -10%;
  right: -5%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
  bottom: -10%;
  left: -5%;
  animation-delay: -4s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-blue);
  top: 50%;
  right: 30%;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
  background: var(--bg-card);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(240,235,248,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-photo-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  position: relative;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,92,231,0.1));
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.about-photo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-photo:hover::before {
  opacity: 1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: var(--transition-slow);
}

.about-photo:hover img {
  transform: scale(1.08);
}

.about-photo:nth-child(2) {
  margin-top: 2rem;
}

.about-photo:nth-child(4) {
  margin-top: 2rem;
}

.about-text .bio {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-rose));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  flex: 1;
  cursor: default;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.highlight-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
  background: var(--bg-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(26,26,46,0.04);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: var(--transition);
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, #E84393, #6C5CE7); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #0984E3, #00CEC9); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #E17055, #E84393); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #6C5CE7, #0984E3); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, #00B894, #00CEC9); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.2rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #E84393, #6C5CE7); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #0984E3, #00CEC9); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #E17055, #E84393); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #6C5CE7, #0984E3); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #00B894, #00CEC9); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================
   WORKS / PORTFOLIO
   ===================== */
.works {
  background: var(--bg-card);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(26,26,46,0.06);
  cursor: default;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.work-card-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.work-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-card-visual::after { opacity: 1; }

.work-card:hover .work-card-visual i {
  transform: scale(1.15);
  transition: var(--transition-bounce);
}

.work-card:nth-child(1) .work-card-visual { background: linear-gradient(135deg, #E84393, #6C5CE7); }
.work-card:nth-child(2) .work-card-visual { background: linear-gradient(135deg, #0984E3, #00CEC9); }
.work-card:nth-child(3) .work-card-visual { background: linear-gradient(135deg, #E17055, #FDCB6E); }
.work-card:nth-child(4) .work-card-visual { background: linear-gradient(135deg, #6C5CE7, #0984E3); }

.work-card-body {
  padding: 1.8rem;
}

.work-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-purple);
  background: var(--accent-purple-soft);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.work-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.work-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #16213E 100%);
  color: var(--text-on-dark);
}

.contact .section-title {
  color: #fff;
}

.contact .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.contact .section-title::after {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-bounce);
  border: none;
}

.contact-btn i {
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  color: #fff;
  box-shadow: 0 4px 20px rgba(9,132,227,0.3);
}
.btn-call:hover {
  box-shadow: 0 8px 32px rgba(9,132,227,0.5);
}

.btn-email {
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-pink));
  color: #fff;
  box-shadow: 0 4px 20px rgba(225,112,85,0.3);
}
.btn-email:hover {
  box-shadow: 0 8px 32px rgba(225,112,85,0.5);
}

.social-section h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.social-card:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255,255,255,0.15);
}

.social-card i {
  font-size: 1.6rem;
  width: 36px;
  text-align: center;
  transition: var(--transition);
}

.social-card:hover i {
  transform: scale(1.2);
}

.social-card .social-handle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.social-card .social-platform {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.social-instagram i { color: #E4405F; }
.social-instagram:hover { border-color: #E4405F; box-shadow: 0 0 20px rgba(228,64,95,0.3); }

.social-tiktok i { color: #00CEC9; }
.social-tiktok:hover { border-color: #00CEC9; box-shadow: 0 0 20px rgba(0,206,201,0.3); }

.social-x i { color: #fff; }
.social-x:hover { border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.2); }

.social-facebook i { color: #1877F2; }
.social-facebook:hover { border-color: #1877F2; box-shadow: 0 0 20px rgba(24,119,242,0.3); }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #0F0F23;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 0;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 0.8rem;
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================
   CURSOR GLOW EFFECT
   ===================== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-intro { max-width: 100%; }

  .hero-buttons { justify-content: center; }

  .hero-photo-wrapper { margin-top: 2rem; }

  .hero-photo {
    width: 300px;
    height: 360px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-area { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    padding: 2rem;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1.1rem; }

  .hamburger { display: flex; }

  .lang-toggle { margin-left: 0; }

  .hero-photo {
    width: 260px;
    height: 320px;
  }

  .about-highlights {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .highlight-item { min-width: 120px; }

  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links { grid-template-columns: 1fr; }

  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { width: 92%; }
  .hero-photo { width: 220px; height: 280px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
