/* =============================================
   EGE REKLAM - Premium Tabela & Reklam Website
   Design System: Liquid Glass + Black & Gold
   ============================================= */

/* ============ FONT FACES ============ */
@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Kabel';
  src: url('font/fonnts.com-Neue_Kabel_Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============ CSS VARIABLES ============ */
:root {
  --bg-color: #000000;
  --bg-secondary: #050505;
  --surface-color: #0a0a0a;
  --surface-light: #111111;
  --surface-lighter: #1a1a1a;

  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA771C;
  --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --gold-glow: rgba(212, 175, 55, 0.3);

  --text-main: #f5f5f5;
  --text-secondary: #cccccc;
  --text-muted: #777777;

  --glass-bg: rgba(20, 20, 20, 0.4);
  --glass-bg-hover: rgba(30, 30, 30, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
  --glass-blur-strong: blur(40px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
}

/* Custom Neon Cursor */
#neon-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-primary), 0 0 40px var(--gold-primary);
  will-change: transform, width, height;
  transform: translate(calc(var(--x, 0px) - 50%), calc(var(--y, 0px) - 50%));
  transition: width 0.2s, height 0.2s, background-color 0.2s, box-shadow 0.2s, border 0.2s, opacity 0.2s;
  opacity: 0;
}

#neon-cursor.hover {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 10px rgba(212,175,55,0.4), inset 0 0 10px rgba(212,175,55,0.4);
}

body {
  font-family: 'Neue Kabel', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

/* ============ AMBIENT CANVAS & 3D OBJECTS ============ */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-color);
}

.ambient-obj {
  position: absolute;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 0.8;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Gold Lines Animations */
.gold-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
  height: 3px;
  width: 200%;
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

@keyframes lineMoveRight {
  0% {
    transform: translateX(-50vw) rotate(15deg);
  }

  100% {
    transform: translateX(50vw) rotate(15deg);
  }
}

@keyframes lineMoveLeft {
  0% {
    transform: translateX(50vw) rotate(-25deg);
  }

  100% {
    transform: translateX(-50vw) rotate(-25deg);
  }
}

.line-1 {
  top: 20%;
  left: -50vw;
  animation: lineMoveRight 15s linear infinite;
}

.line-2 {
  top: 70%;
  right: -50vw;
  height: 4px;
  animation: lineMoveLeft 20s linear infinite;
}

.line-3 {
  top: 50%;
  left: -50vw;
  height: 5px;
  opacity: 0.3;
  animation: lineMoveRight 25s linear infinite;
}

/* Animations for Decals */
@keyframes floatObj {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-80px) rotate(18deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes floatReverseObj {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(80px) rotate(-18deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Ambient Object Placements */
.obj-img-1 {
  width: 350px;
  top: 5%;
  left: 2%;
  animation: floatObj 22s infinite;
  opacity: 0.7;
}

.obj-img-2 {
  width: 450px;
  top: 55%;
  right: -5%;
  animation: floatReverseObj 30s infinite;
  opacity: 0.6;
}

.obj-img-3 {
  width: 250px;
  top: 75%;
  left: 10%;
  animation: floatObj 18s infinite;
  opacity: 0.5;
}

.obj-img-4 {
  width: 300px;
  top: -5%;
  right: 15%;
  animation: floatReverseObj 25s infinite;
  opacity: 0.8;
}

.obj-img-5 {
  width: 200px;
  top: 35%;
  left: 55%;
  animation: floatObj 28s infinite;
  opacity: 0.4;
  filter: blur(3px);
}

.obj-img-6 {
  width: 400px;
  top: 65%;
  left: 40%;
  animation: floatReverseObj 24s infinite;
  opacity: 0.3;
  filter: blur(5px);
}

/* ============ PREMIUM GLASSMORPHISM ============ */
.premium-glass {
  background: rgba(15, 15, 15, 0.4) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative;
  z-index: 2;
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Neue Kabel', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

::selection {
  background: var(--gold-primary);
  color: #000;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--surface-lighter);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============ UTILITY CLASSES ============ */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.green-foil-text {
  background: linear-gradient(135deg, #22C1C3, #38EF7D, #11998E, #D4FC79, #11998E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(56, 239, 125, 0.4);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Neue Kabel', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-main);
  outline: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  border-color: var(--gold-primary);
  color: var(--gold-primary);

}

.btn-gold:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.badge i {
  color: var(--gold-primary);
  font-size: 10px;
}

/* ============ NAVBAR ============ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  transition: var(--transition);
}

header.scrolled {
  padding: 12px 5%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  z-index: 1001;
}

.ege-logo-img {
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: var(--transition);
}

.reklam-text {
  font-family: 'Neue Kabel', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

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

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
  font-size: 18px;
}

.nav-social-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.ai-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Neue Kabel', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.ai-btn i {
  font-size: 14px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2) rotate(15deg);
  }
}

.ai-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.btn-icon {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-overlay a {
  color: var(--text-main);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
}

.mobile-menu-overlay a:hover {
  color: var(--gold-primary);
}

/* ============ SECTIONS GENERAL ============ */
section {
  padding: 120px 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.section-title {
  text-align: center;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

/* ============ HERO SECTION ============ */
#hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at center, rgba(30, 30, 30, 0.3) 0%, var(--bg-color) 70%);
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 1;
  text-transform: uppercase;
}

.scroll-indicator .line {
  height: 1px;
  width: 60px;
  background: rgba(255, 255, 255, 0.4);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-icon .wheel {
  width: 3px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* Ambient Shapes */
.shape {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  width: 600px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.shape-2 {
  width: 400px;
  height: 200px;
  background: rgba(212, 175, 55, 0.08);
  bottom: 15%;
  right: 5%;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.05);
  bottom: 30%;
  left: 5%;
}

/* Liquid Glass Floating Icons */
.floating-icon {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
  cursor: pointer;
}

.floating-icon i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease, text-shadow 0.4s ease;
}

.floating-icon:hover i {
  transform: scale(1.1);
  color: #fff;
  text-shadow: 0 0 15px var(--gold-primary);
}

.liquid-glass {
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.liquid-glass:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.4);
}

.icon-1 {
  top: 12%;
  left: 6%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  font-size: 40px;
}

.icon-2 {
  top: 50%;
  right: 8%;
  width: 130px;
  height: 130px;
  animation-delay: 1.5s;
  font-size: 55px;
}

.icon-3 {
  bottom: 12%;
  left: 12%;
  width: 80px;
  height: 80px;
  animation-delay: 3s;
  font-size: 35px;
}

.icon-4 {
  top: 22%;
  right: 18%;
  width: 110px;
  height: 110px;
  animation-delay: 2s;
  font-size: 48px;
}

.icon-5 {
  top: 70%;
  left: 25%;
  width: 70px;
  height: 70px;
  animation-delay: 4s;
  font-size: 30px;
}

.icon-6 {
  top: 8%;
  right: 30%;
  width: 75px;
  height: 75px;
  animation-delay: 2.5s;
  font-size: 32px;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(10deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}


/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ============ FEATURES SECTION ============ */
#features {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 36px;
  color: var(--gold-primary);
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ STATS SECTION ============ */
#stats {
  padding: 60px 5%;
  min-height: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============ SHOWCASE ============ */
#showcase {
  padding: 80px 5%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.showcase-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.showcase-image-link {
  flex: 1.2;
  max-width: 55%;
  display: flex;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.showcase-image-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.showcase-image-link:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.showcase-image-link:hover .showcase-image {
  transform: scale(1.03);
}

.showcase-text-wrapper {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.showcase-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  white-space: pre-line;
  text-align: left;
}

/* Blog Hover Effects */
.premium-glass:hover .blog-img-hover {
  transform: scale(1.05);
}

.showcase-cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--glass-border);
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-cta-text {
  display: flex;
  flex-direction: column;
}

.cta-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showcase-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-primary), #ffc107);
  color: #000 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  animation: pulse-gold-cta 2.5s infinite alternate;
  white-space: nowrap;
}

.showcase-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep-cta 3s infinite;
}

.showcase-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #ffc107, var(--gold-primary));
}

@keyframes pulse-gold-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
}

@keyframes shine-sweep-cta {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

/* ============ GALLERY / PROJECTS ============ */
#gallery {
  background-color: var(--bg-secondary);
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  break-inside: avoid;
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.project-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: filter 0.6s ease, transform 0.5s ease;
  filter: grayscale(80%) contrast(1.1);
}

.project-card:hover .project-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Mobile scroll: card in viewport center gets full color */
.project-card.in-view .project-img {
  filter: grayscale(0%) contrast(1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      transparent 35%,
      transparent 65%,
      rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-title-top {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transform: translateY(-10px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-title-top {
  transform: translateY(0);
}

.project-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project-meta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-meta-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.project-meta-info .meta-label {
  color: var(--gold-primary);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-glass-pill {
  align-self: flex-end;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.btn-glass-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.project-card:hover .btn-glass-pill {
  transform: translateY(0);
}

.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
  grid-column: 1 / -1;
}

/* ============ TESTIMONIALS ============ */
#testimonials {
  background-color: transparent;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold-primary);
  margin-bottom: 16px;
  font-size: 16px;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.reviewer-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ PROCESS & SERVICES ============ */
#services {
  min-height: auto;
  padding-bottom: 0;
}

.process-container {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-info {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.process-steps {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  overflow: hidden;
}

.process-step-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-hover);
}

.process-step-card:hover::after {
  opacity: 1;
}

.process-step-card .step-num {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  font-family: 'Neue Kabel', sans-serif;
}

.process-icon {
  font-size: 28px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.process-step-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Process Section Image Layout */
.process-image-wrapper {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.process-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.process-image:hover {}

.process-info-block {
  margin-top: 30px;
}

/* Services Grid */
.services-section {
  padding: 120px 5%;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 32px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  display: inline-block;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Testimonials Enhanced Layout */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.testimonials-left {
  position: sticky;
  top: 120px;
}

.testimonials-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  margin-bottom: 30px;
}

.testimonials-image:hover {}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.review-card .stars {
  color: var(--gold-primary);
  margin-bottom: 15px;
  font-size: 14px;
}

.review-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-primary);
}

.reviewer-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.reviewer-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Section */
#faq {
  background-color: transparent;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-image {
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 30px;
  border: 1px solid var(--glass-border);
}

.faq-image:hover {}

.faq-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.faq-tag {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.faq-tag:hover {
  border-color: var(--glass-border-hover);
  color: var(--text-main);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: transparent;
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-fast);
  user-select: none;
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-question i {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--gold-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* CTA Section */
#cta {
  min-height: 40vh;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    var(--bg-color);
  padding: 60px 5%;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Parallax Decals in CTA */
.cta-decal {
  position: absolute;
  width: 100px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: transform 0.1s linear;
  /* smooth scroll step */
}

.cta-decal-left {
  left: 5%;
  top: 40px;
}

.cta-decal-right {
  right: 5%;
  top: 80px;
}

.cta-glow-left,
.cta-glow-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.cta-glow-left {
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 183, 3, 0.15);
}

.cta-glow-right {
  right: -100px;
  bottom: 20%;
  background: rgba(212, 175, 55, 0.15);
}

.cta-content {
  z-index: 2;
  max-width: 700px;
}

.cta-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.cta-social-divider {
  width: 1px;
  height: 20px;
  background: var(--glass-border);
}

.cta-social a {
  color: var(--text-muted);
  font-size: 18px;
  transition: var(--transition-fast);
}

.cta-social a:hover {
  color: var(--gold-primary);
}

/* Marquee Ticker */
.marquee-wrapper {
  overflow: hidden;
  padding: 30px 0;
  margin: 40px auto 0;
  max-width: 1200px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 45s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
  color: var(--text-main);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.marquee-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
}

.marquee-item i {
  color: var(--gold-primary);
  font-size: 22px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============ CONTACT ============ */
#contact {
  background-color: var(--surface-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.contact-actions-grid .btn {
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
}

.contact-actions-grid .btn i {
  font-size: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-text a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-text a:hover {
  color: var(--gold-primary);
}

.contact-map {
  display: flex;
  height: 95%;
  width: 100%;
}

.map-container {
  flex: 1;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

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

/* ============ FOOTER ============ */
footer {
  padding: 40px 5%;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-color);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: var(--text-secondary);
  background: var(--surface-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  font-size: 16px;
}

.social-links a:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
  text-align: right;
}

.footer-copyright a {
  color: rgba(212, 175, 55, 0.5);
  font-size: 11px;
  transition: var(--transition-fast);
}

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

/* ============ IMAGE LIGHTBOX ============ */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

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

/* ============ ADMIN STYLES ============ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-panel {
  padding: 100px 5%;
  min-height: 100vh;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: 'Neue Kabel', sans-serif;
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.admin-card {
  padding: 30px;
}

/* ============ RESPONSIVE ============ */

/* --- 1200px: Tablet Landscape --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 72px;
  }

  .section-title {
    font-size: 44px;
  }

  .cta-title {
    font-size: 40px;
  }
}

/* --- 992px: Tablet --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 56px;
  }

  .section-title {
    font-size: 38px;
  }

  .cta-title {
    font-size: 34px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .process-container {
    flex-direction: column;
    gap: 40px;
  }

  .process-info {
    position: relative;
    top: 0;
    text-align: center;
  }

  .process-info .hero-actions {
    justify-content: center;
  }

  .process-info .section-title,
  .process-info .section-subtitle {
    text-align: center;
  }

  .process-image-wrapper {
    position: relative;
    top: 0;
  }

  .process-image {
    height: 350px;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-left {
    position: relative;
    top: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  /* --- MOBILE NAV: hamburger visible, nav links hidden --- */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .ai-btn span.ai-btn-text {
    display: none;
  }
}

/* --- 768px: Mobile --- */
@media (max-width: 768px) {

  /* ---- GLOBAL OVERFLOW FIX ---- */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  /* ---- HEADER / NAVBAR MOBILE ---- */
  header {
    padding: 12px 4%;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .logo-wrapper {
    flex-shrink: 0;
  }

  .ege-logo-img {
    height: 42px;
  }

  .reklam-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  /* Nav actions: push to the right */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .ai-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .ai-btn span.ai-btn-text {
    display: none;
  }

  .btn-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  /* Hamburger: ensure it's at the far end */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    order: 10;
    flex-shrink: 0;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  /* ---- MOBILE MENU OVERLAY ---- */
  .mobile-menu-overlay {
    padding: 80px 20px 40px;
  }

  .mobile-menu-overlay a {
    font-size: 20px;
  }

  /* ---- SECTIONS GENERAL ---- */
  section {
    padding: 60px 5%;
    overflow: hidden;
    max-width: 100vw;
  }

  /* ---- HERO ---- */
  #hero {
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 5px;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -0.5px;
    font-weight: 700;
    word-break: break-word;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 15px;
    padding: 0;
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .scroll-indicator {
    margin-top: 20px;
  }

  /* Hide floating icons on mobile */
  .floating-icon {
    display: none !important;
  }

  /* Hide shapes on mobile */
  .shape {
    display: none;
  }

  .hero-bg-glow {
    width: 300px;
    height: 200px;
  }

  /* ---- SECTION TITLES ---- */
  .section-title {
    font-size: 28px;
    word-break: break-word;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 5px;
    max-width: 100%;
  }

  /* ---- FEATURES ---- */
  #features {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-desc {
    font-size: 13px;
  }

  /* ---- STATS ---- */
  #stats {
    padding: 40px 5%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .stat-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 15px;
  }

  /* ---- SHOWCASE ---- */
  #showcase {
    padding: 60px 0;
  }

  .showcase-content {
    flex-direction: column;
    padding: 0 4%;
    gap: 20px;
  }

  .showcase-image-link {
    max-width: 100%;
    border-radius: 12px;
  }

  .showcase-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .showcase-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .showcase-text-wrapper {
    padding: 24px;
    border-radius: 12px;
  }

  .showcase-text {
    font-size: 15px;
    text-align: left;
  }

  /* ---- GALLERY ---- */
  .gallery-grid {
    column-count: 1;
    max-width: 100%;
  }

  .project-card {
    margin-bottom: 16px;
    transform: scale(0.95);
    opacity: 0.7;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  }

  .project-card.in-view {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15);
  }

  /* Hide overlay on mobile since no hover needed, lightbox shows info */
  .project-overlay {
    opacity: 0 !important;
  }

  .project-title-top {
    font-size: 15px;
    transform: translateY(0);
  }

  .btn-glass-pill {
    transform: translateY(0);
    font-size: 11px;
    padding: 6px 14px;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-left {
    position: relative;
    top: 0;
  }

  .testimonials-left .section-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .testimonials-left .section-subtitle {
    text-align: center !important;
  }

  .testimonials-left .hero-actions {
    justify-content: center !important;
  }

  .testimonials-image {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .reviews-container {
    gap: 14px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .reviewer-img {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .reviewer-info h4 {
    font-size: 14px;
  }

  .reviewer-info p {
    font-size: 11px;
  }

  /* ---- PROCESS & SERVICES ---- */
  .process-container {
    flex-direction: column;
    gap: 24px;
  }

  .process-image-wrapper {
    position: relative;
    top: 0;
  }

  .process-image {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .process-info-block {
    padding: 24px !important;
  }

  .process-info-block .section-title {
    font-size: 24px !important;
    text-align: center !important;
  }

  .process-info-block .section-subtitle {
    text-align: center !important;
  }

  .process-info-block .hero-actions {
    justify-content: center !important;
  }

  .process-steps {
    gap: 14px;
  }

  .process-step-card {
    padding: 24px 18px;
  }

  .process-step-card h3 {
    font-size: 18px;
  }

  .process-step-card p {
    font-size: 13px;
  }

  .process-step-card .step-num {
    font-size: 48px;
    top: 15px;
    right: 15px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .services-section {
    padding: 60px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .service-card {
    padding: 24px 18px;
  }

  .service-icon {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-desc {
    font-size: 13px;
  }

  /* ---- MARQUEE ---- */
  .marquee-wrapper {
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 20px;
  }

  .marquee-item {
    font-size: 14px;
    padding: 8px 18px;
    gap: 10px;
  }

  .marquee-item i {
    font-size: 14px;
  }

  /* ---- FAQ ---- */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-left .section-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .faq-left .section-subtitle {
    text-align: center !important;
  }

  .faq-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: 20px;
  }

  .faq-tags {
    justify-content: center;
  }

  .faq-left>div:last-child {
    text-align: center;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  /* ---- CTA ---- */
  #cta {
    padding: 50px 5%;
    min-height: auto;
    overflow: hidden;
  }

  .cta-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-social {
    gap: 16px;
    margin-top: 20px;
  }

  /* Hide all decorative decals on mobile */
  .cta-decal,
  .contact-decal,
  .lightbox-decal {
    display: none !important;
  }

  .cta-glow-left,
  .cta-glow-right {
    display: none;
  }

  /* ---- CONTACT ---- */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-item {
    flex-direction: row;
    align-items: center;
    padding: 16px 14px;
    gap: 14px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .contact-text h4 {
    font-size: 14px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .map-container {
    min-height: 280px;
  }

  .gold-shine-border {
    padding: 3px;
  }

  /* ---- FOOTER ---- */
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-separator {
    max-width: 100%;
  }

  /* ---- LIGHTBOX ---- */
  .lightbox-content-wrapper {
    width: 95%;
  }

  .lightbox-inner {
    border-radius: 12px;
  }

  .lightbox-inner img {
    max-height: 50vh;
  }

  .lightbox-info {
    padding: 16px;
  }

  .lightbox-info h4 {
    font-size: 16px;
  }

  .lightbox-info p {
    font-size: 13px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* ---- AMBIENT BACKGROUND ---- */
  .ambient-obj {
    opacity: 0.6 !important;
    mix-blend-mode: screen !important;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5)) !important;
  }

  .obj-img-1 {
    width: 100px !important;
    top: 3% !important;
    left: -5% !important;
  }

  .obj-img-2 {
    width: 120px !important;
    top: 30% !important;
    right: -10% !important;
  }

  .obj-img-3 {
    width: 80px !important;
    top: 42% !important;
    left: 5% !important;
  }

  .obj-img-4 {
    width: 90px !important;
    top: 10% !important;
    right: 0% !important;
  }

  .obj-img-5 {
    width: 70px !important;
    top: 35% !important;
    left: 60% !important;
  }

  .obj-img-6 {
    width: 100px !important;
    top: 55% !important;
    left: 20% !important;
  }

  #ambient-canvas {
    overflow: hidden;
  }

  /* ---- DISABLE HOVER TRANSFORMS (mobile = touch) ---- */
  .contact-info-item:hover,
  .project-card:hover,
  .review-card:hover,
  .feature-card:hover,
  .process-step-card:hover,
  .service-card:hover,
  .stat-card:hover {
    transform: none;
  }

  /* ---- ADMIN ---- */
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 480px: Small Phone --- */
@media (max-width: 480px) {

  header {
    padding: 10px 3%;
  }

  .ege-logo-img {
    height: 36px;
  }

  .reklam-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 85%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 20px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 13px;
  }

  .process-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonials-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .faq-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .marquee-item {
    font-size: 12px;
    padding: 6px 14px;
  }

  .marquee-item i {
    font-size: 12px;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
  }

  .map-container {
    min-height: 220px;
  }

  .ai-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .btn-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .hamburger span {
    width: 20px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .faq-question {
    font-size: 13px;
    padding: 12px 14px;
  }

  .review-card {
    padding: 16px 12px;
  }

  .review-text {
    font-size: 13px;
  }

  .process-step-card {
    padding: 20px 14px;
  }

  .feature-card {
    padding: 22px 16px;
  }

  .service-card {
    padding: 20px 14px;
  }
}

/* ============ LIGHTBOX UPDATES ============ */
.lightbox-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.lightbox-decal {
  position: absolute;
  width: 120px;
  opacity: 0;
  transition: opacity 1s, left 1s, right 1s;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.lightbox-decal-1 {
  left: -300px;
  top: -50px;
}

.lightbox-decal-2 {
  left: -300px;
  bottom: 0px;
}

.lightbox-decal-3 {
  right: -300px;
  top: -50px;
}

.lightbox-decal-4 {
  right: -300px;
  bottom: 0px;
}

.lightbox-overlay.active .lightbox-decal-1 {
  opacity: 1;
  left: -80px;
  animation: floatObj 8s infinite alternate ease-in-out;
}

.lightbox-overlay.active .lightbox-decal-2 {
  opacity: 1;
  left: -80px;
  animation: floatReverseObj 10s infinite alternate ease-in-out;
}

.lightbox-overlay.active .lightbox-decal-3 {
  opacity: 1;
  right: -80px;
  animation: floatObj 9s infinite alternate ease-in-out;
}

.lightbox-overlay.active .lightbox-decal-4 {
  opacity: 1;
  right: -80px;
  animation: floatReverseObj 11s infinite alternate ease-in-out;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  background: var(--surface-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  max-width: 100%;
}

.lightbox-inner img {
  max-height: 65vh;
  width: 100%;
  object-fit: contain;
  background: #000;
}

.lightbox-info {
  padding: 24px;
  text-align: center;
}

.lightbox-info h4 {
  color: var(--gold-primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.lightbox-info p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 15px;
}

/* ============ MAP GOLD SHINE BORDER ============ */
.gold-shine-border {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold-light), var(--gold-dark), var(--gold-primary));
  background-size: 300% 300%;
  animation: goldShine 4s ease infinite;
}

.gold-shine-border iframe {
  border-radius: calc(var(--radius-lg) - 4px);
  background: #000;
}

@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ============ FOOTER SEPARATOR ============ */
.footer-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 30%, var(--gold-primary) 50%, var(--gold-dark) 70%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.gold-shine-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shineLine 3s infinite;
}

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

  100% {
    transform: translateX(100%);
  }
}

/* ============ CONTACT DECALS ============ */
.contact-decal {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.contact-glow-1 {
  left: -150px;
  top: 10%;
  background: rgba(255, 183, 3, 0.12);
}

.contact-glow-2 {
  right: -150px;
  bottom: 10%;
  background: rgba(212, 175, 55, 0.15);
}

.contact-decal-1 {
  width: 140px;
  top: 10%;
  left: 3%;
  animation: floatObj 9s infinite;
}

.contact-decal-2 {
  width: 110px;
  bottom: 15%;
  right: 2%;
  animation: floatReverseObj 12s infinite;
}

.contact-decal-3 {
  width: 90px;
  top: 40%;
  left: 1%;
  animation: floatReverseObj 10s infinite;
}

.contact-decal-4 {
  width: 160px;
  top: 25%;
  right: 5%;
  animation: floatObj 11s infinite;
}

.contact-decal-5 {
  width: 120px;
  bottom: 5%;
  left: 5%;
  animation: floatObj 8s infinite;
}

.contact-decal-6 {
  width: 130px;
  top: 50%;
  right: 1%;
  animation: floatReverseObj 9s infinite;
}

.footer-links a:hover,
.admin-link:hover {
  color: var(--gold-primary) !important;
}