/* ==========================================================================
   GÖZDE GOLD KUYUMCULUK - ULTRA-LUXURY LIGHT IVORY & CHAMPAGNE GOLD THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Royal Champagne Gold Palettes */
  --gold-primary: #C59B27;
  --gold-light: #DFBA4E;
  --gold-bright: #F5D77F;
  --gold-dark: #9A7416;
  --gold-deep: #684E0C;
  --gold-amber: #D97706;
  
  --gold-gradient: linear-gradient(135deg, #DFBA4E 0%, #C59B27 50%, #9A7416 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ECD37A 0%, #D4AF37 50%, #B38728 100%);
  --gold-gradient-text: linear-gradient(135deg, #87620E 0%, #C59B27 50%, #684E0C 100%);
  --gold-gradient-card: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.01) 100%);
  
  /* Pearl Ivory, Silk White & Warm Alabaster Canvas (Light Mode) */
  --bg-deep: #F8F6F2;
  --bg-base: #FFFFFF;
  --bg-surface: #F3EFE9;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #FFFFFF;
  --bg-card-solid: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  /* Accents */
  --accent-emerald: #059669;
  
  /* Typography Colors */
  --text-main: #14171F;
  --text-heading: #0F1218;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-gold: #9A7416;
  
  /* Borders */
  --border-gold: rgba(197, 155, 39, 0.3);
  --border-gold-glow: rgba(197, 155, 39, 0.6);
  --border-light: rgba(0, 0, 0, 0.06);
  --border-glass: rgba(197, 155, 39, 0.18);
  
  /* Shadows & Glows */
  --glow-gold-sm: 0 4px 20px rgba(197, 155, 39, 0.2);
  --glow-gold-lg: 0 10px 35px rgba(197, 155, 39, 0.3);
  --shadow-light-lg: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 25px -4px rgba(140, 110, 40, 0.08), 0 2px 8px -2px rgba(0, 0, 0, 0.03);
  
  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  /* Sizing */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  --header-height: 86px;
  --container-max: 1320px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.75;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Radial Glows (Soft Champagne Lighting) */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.glow-top-left {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F3E5AB 0%, transparent 70%);
}

.glow-middle-right {
  top: 35%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #ECC874 0%, transparent 70%);
}

.glow-bottom-left {
  bottom: 10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FDE68A 0%, transparent 70%);
}

@media (max-width: 900px) {
  .ambient-glow {
    display: none !important;
  }
}

.content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.gold-gradient-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

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

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

/* Badges & Section Heads */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--border-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

.tech-badge .status-ping {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  position: relative;
}

.tech-badge .status-ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-head p {
  color: var(--text-body);
  font-size: 1.08rem;
  margin-top: 14px;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   LIVE MARKET TICKER RIBBON (LIGHT CHAMPAGNE)
   ========================================================================== */

.market-ticker-wrap {
  background: #F4EFEB;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 10px 0;
  display: flex;
  position: relative;
  z-index: 100;
}

.ticker-track {
  display: flex;
  gap: 36px;
  animation: tickerSlide 35s linear infinite;
}

.market-ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-item .name {
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.ticker-item .val {
  color: var(--gold-deep);
  font-weight: 700;
}

.ticker-item .up {
  color: var(--accent-emerald);
  font-size: 0.75rem;
}

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

/* ==========================================================================
   LIGHT LUXURY GLASS HEADER
   ========================================================================== */

.ultra-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 155, 39, 0.18);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.ultra-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 74px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-wrapper img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.ultra-header.scrolled .brand-wrapper img {
  height: 44px;
}

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

.nav-item-link {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-item-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

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

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

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

/* Luxury Buttons */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lux-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: var(--glow-gold-sm);
}

.btn-lux-gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--glow-gold-lg);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-lux-glass {
  background: #FFFFFF;
  color: var(--text-heading);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.btn-lux-glass:hover {
  background: rgba(197, 155, 39, 0.08);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  padding: 10px;
  cursor: pointer;
}

/* ==========================================================================
   IMMERSIVE HERO 3D SHOWCASE (LIGHT MODE)
   ========================================================================== */

.hero-luxury-immersive {
  position: relative;
  padding: 40px 0 20px 0;
  overflow: hidden;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title-main {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 5vw, 3.8rem);
  word-break: break-word;
  line-height: 1.22;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  width: 100%;
  box-sizing: border-box;
}

.stat-box .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-box .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Visual Collage */
.hero-visual-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 40px);
  gap: 16px;
}

.visual-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-light-lg);
  background: #FFFFFF;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.25);
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-tile.tile-large {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
}

.visual-tile.tile-small-1 {
  grid-column: 8 / 13;
  grid-row: 2 / 7;
}

.visual-tile.tile-small-2 {
  grid-column: 7 / 13;
  grid-row: 7 / 13;
}

.visual-video-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: var(--shadow-card);
}

.pulse-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--glow-gold-sm);
  transition: var(--transition);
  border: none;
  flex-shrink: 0;
}

.pulse-play-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-gold-lg);
}

/* ==========================================================================
   INTERACTIVE GOLD CALCULATOR & LIVE MARKET (LIGHT)
   ========================================================================== */

/* ==========================================================================
   ISPARTA 7-DAY WEATHER FORECAST WIDGET
   ========================================================================== */

.weather-section {
  padding: 25px 0 45px 0;
  position: relative;
}

.weather-card-container {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.weather-card-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

.weather-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weather-title-wrap h3 {
  font-size: 1.15rem;
  color: var(--text-heading);
  letter-spacing: 0.04em;
}

.weather-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: #FAF8F5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.weather-grid-7days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.weather-day-item {
  background: #FAF8F5;
  border: 1px solid rgba(197, 155, 39, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.weather-day-item:hover, .weather-day-item.today {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.15);
}

.weather-day-item.today {
  border-width: 2px;
}

.weather-day-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.weather-icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.weather-temp-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
}

.weather-temp-max {
  font-size: 0.98rem;
  font-weight: 700;
  color: #D97706;
}

.weather-temp-min {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.weather-desc-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 992px) {
  .weather-grid-7days {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .weather-grid-7days {
    grid-template-columns: repeat(2, 1fr);
  }
}

.market-hub-section {
  padding: 45px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #FFFFFF 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.market-hub-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.glass-calculator-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.glass-calculator-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.calc-row {
  margin-bottom: 22px;
}

.calc-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 15px 18px;
  background: #FAF8F5;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 1.02rem;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: var(--transition);
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-dark);
  background: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(197, 155, 39, 0.12) 0%, rgba(197, 155, 39, 0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 26px;
}

.calc-result-box .res-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.calc-result-box .res-val {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.rates-modern-frame {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   NATIVE LIVE MARKET BOARD (REPLACES BROKEN IFRAME)
   ========================================================================== */

.market-live-board-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.market-live-board-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.board-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-title-wrap h3 {
  font-size: 1.15rem;
  color: var(--text-heading);
  letter-spacing: 0.04em;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  position: relative;
}

.live-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent-emerald);
  animation: ripple 1.8s infinite ease-out;
}

.board-update-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  background: #FAF8F5;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.board-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.market-table th {
  text-align: left;
  padding: 10px 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom: 1px solid var(--border-gold);
}

.market-table th:nth-child(2),
.market-table th:nth-child(3),
.market-table th:nth-child(4) {
  text-align: right;
}

.market-row {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.market-row:hover {
  background: #FAF6EE;
}

.market-row td {
  padding: 12px 8px;
}

.item-name {
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-icon {
  color: var(--gold-primary);
  font-size: 0.7rem;
}

.gold-icon.currency {
  color: #3B82F6;
}

.price-buy {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-body);
}

.price-sell {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-deep);
}

.price-change {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-change.up {
  color: var(--accent-emerald);
}

.board-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.board-call-link {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.board-call-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ==========================================================================
   TRUST BADGES - 6 PEARL WHITE 3D CARDS
   ========================================================================== */

.trust-hologram-section {
  padding: 10px 0 25px 0;
  position: relative;
}

.trust-hologram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.holo-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.holo-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dark);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.18);
}

.holo-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FAF6EE;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: var(--transition);
}

.holo-card:hover .holo-icon-wrap {
  background: var(--gold-gradient);
  transform: scale(1.1);
  box-shadow: var(--glow-gold-sm);
}

.holo-icon-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.holo-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.holo-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   ISPARTA'DA KUYUMCULUK - PRESTIGE STORY (LIGHT)
   ========================================================================== */

.prestige-story-section {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.prestige-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.prestige-main-text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 35px;
}

.prestige-cards-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prestige-matrix-card {
  background: #FAF8F5;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.prestige-matrix-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.15);
}

.prestige-matrix-card.span-2 {
  grid-column: span 2;
}

.prestige-matrix-card .icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.prestige-matrix-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-heading);
}

.prestige-matrix-card p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.prestige-visual-stack {
  position: relative;
}

.prestige-hero-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-light-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.prestige-floating-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #FFFFFF;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  box-shadow: var(--glow-gold-sm);
}

.prestige-floating-badge .exp-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-deep);
  line-height: 1;
}

.prestige-floating-badge .exp-txt {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}



/* ==========================================================================
   PAGE HERO BANNER (ULTRA-LUXURY EDITORIAL STYLE)
   ========================================================================== */

.subpage-hero {
  position: relative;
  padding: 34px 0 28px 0;
  text-align: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px -2px rgba(197, 155, 39, 0.06);
}

.subpage-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subpage-hero .tech-badge {
  display: none; /* Removed the pill badge for a cleaner luxury editorial look */
}

.subpage-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.subpage-hero-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.subpage-hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 4px auto 0 auto;
  font-weight: 400;
}

.modern-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
  color: var(--gold-deep);
  background: #FAF8F5;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.modern-breadcrumbs a {
  color: var(--text-muted);
}

.modern-breadcrumbs a:hover {
  color: var(--gold-dark);
}

.modern-breadcrumbs a {
  color: var(--text-muted);
}

.modern-breadcrumbs a:hover {
  color: var(--text-heading);
}

/* ==========================================================================
   GALLERY PAGE (LIGHT)
   ========================================================================== */

.gallery-grid-lux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
}

.gallery-card-lux {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-card-lux:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-dark);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.2);
}

.gallery-card-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-card-lux:hover img {
  transform: scale(1.1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.gallery-card-overlay h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
}

.gallery-zoom-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-card-lux:hover .gallery-zoom-badge {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   CONTACT PAGE - 50/50 SPLIT LAYOUT
   ========================================================================== */

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 70px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-entity-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-entity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.contact-entity-card h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.contact-entity-card h2 {
  font-size: 1.8rem;
  color: var(--gold-deep);
  font-weight: 800;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.contact-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.contact-item-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.15);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FAF6EE;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item-card:hover .contact-item-icon {
  background: var(--gold-gradient);
  transform: scale(1.08);
}

.contact-item-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-item-card h4 {
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 3px;
}

.contact-item-card p, .contact-item-card a {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-item-card a:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-form-card .form-header {
  margin-bottom: 24px;
}

.contact-form-card .form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.contact-form-card .form-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 580px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.map-lux-box {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  margin-bottom: 70px;
}

.map-lux-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   ULTRA FOOTER (ELEGANT DARK ESPRESSO CONTRAST)
   ========================================================================== */

.ultra-footer {
  background: #0E121A;
  border-top: 2px solid var(--gold-primary);
  color: #94A3B8;
  padding: 80px 0 0 0;
  position: relative;
  z-index: 10;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col img {
  height: 48px;
  width: auto;
  margin-bottom: 22px;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 14px;
}

.footer-nav-list a {
  color: #94A3B8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: #FFFFFF;
  transform: translateX(6px);
}

.footer-contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: #94A3B8;
}

.footer-contact-row svg {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748B;
}

/* Visitor Counter Badge */
.visitor-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  color: #94A3B8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.counter-pulse {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  position: relative;
}

.counter-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #10B981;
  animation: ripple 2s infinite ease-out;
}

.counter-label {
  font-weight: 500;
  color: #CBD5E1;
}

.counter-number {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.footer-bottom-bar a {
  color: var(--gold-light);
}

.footer-bottom-bar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & PHONE)
   ========================================================================== */

.lux-floating-dock {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dock-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  position: relative;
}

.dock-btn:hover {
  transform: scale(1.14) translateY(-3px);
}

.dock-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.dock-btn.phone {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: var(--glow-gold-sm);
}

/* ==========================================================================
   MOBILE DRAWER (LIGHT MODE)
   ========================================================================== */

.drawer-curtain {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-curtain.active {
  opacity: 1;
  visibility: visible;
}

.lux-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-gold);
  z-index: 2001;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.lux-mobile-drawer.active {
  right: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 2rem;
  cursor: pointer;
}

.drawer-nav-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-heading);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--gold-deep);
  padding-left: 8px;
}

/* ==========================================================================
   PHOTO GALLERY LIGHTBOX MODAL
   ========================================================================== */

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3010;
}

.lightbox-close:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3010;
}

.lightbox-nav-btn.prev { left: 30px; }
.lightbox-nav-btn.next { right: 30px; }

.lightbox-nav-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

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

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE QUERIES & MOBILE HARDENING
   ========================================================================== */

/* Prevent any horizontal shift / overflow globally */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

@media (max-width: 1100px) {
  .hero-split-grid { 
    grid-template-columns: 1fr; 
    gap: 36px;
  }
  .hero-visual-collage { 
    max-width: 600px; 
    margin: 0 auto; 
  }
  .trust-hologram-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px;
  }
  .market-hub-grid { 
    grid-template-columns: 1fr; 
    gap: 30px;
  }
  .prestige-story-grid { 
    grid-template-columns: 1fr; 
    gap: 36px;
  }
  .footer-columns-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px;
  }
}

@media (max-width: 850px) {
  .nav-links-modern, .header-cta-btn { 
    display: none !important; 
  }
  .mobile-menu-btn { 
    display: flex; 
    align-items: center;
    justify-content: center;
  }
  .gallery-grid-lux { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }
  .contact-split-grid { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .hero-stats-ribbon {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
    gap: 12px;
  }
  .stat-box .num {
    font-size: 1.5rem;
  }
  .stat-box .lbl {
    font-size: 0.72rem;
  }
  .weather-grid-7days {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }
  .weather-day-item {
    flex: 0 0 105px;
    min-width: 105px;
  }
}

@media (max-width: 768px) {
  .hero-visual-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .visual-tile.tile-large {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 270px;
  }
  .visual-tile.tile-small-1,
  .visual-tile.tile-small-2 {
    display: none;
  }
  .visual-video-badge {
    position: static;
    margin-top: 14px;
  }
  .glass-calculator-panel {
    padding: 24px 18px;
  }
  .market-live-board-card {
    padding: 24px 16px;
  }
  .market-table th, .market-table td {
    padding: 10px 8px;
    font-size: 0.82rem;
  }
  .market-table th:first-child, .market-table td:first-child {
    padding-left: 8px;
  }
  .prestige-story-grid {
    grid-template-columns: 1fr;
  }
  .prestige-cards-matrix {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .prestige-matrix-card.span-2 {
    grid-column: span 1;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
  .contact-item-card {
    padding: 16px 14px;
    gap: 14px;
  }
  .contact-item-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 16px;
  }
  .hero-luxury-immersive {
    padding: 24px 0 16px 0;
  }
  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions-row .btn-lux {
    width: 100%;
    text-align: center;
  }
  .hero-stats-ribbon {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 6px;
    padding: 14px 8px;
  }
  .stat-box {
    border-bottom: none;
    border-right: 1px solid var(--border-light);
    padding: 0 4px;
  }
  .stat-box:last-child {
    border-right: none;
  }
  .stat-box .num {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }
  .stat-box .lbl {
    font-size: 0.65rem;
    line-height: 1.25;
  }
  .trust-hologram-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
  .holo-card {
    padding: 16px 8px;
  }
  .holo-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .holo-icon-wrap img {
    width: 26px;
    height: 26px;
  }
  .holo-card h4 {
    font-size: 0.82rem;
  }
  .holo-card p {
    font-size: 0.72rem;
  }
  .gallery-grid-lux { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .footer-columns-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 24px 16px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-columns-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .lux-floating-dock {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  .dock-btn {
    width: 48px;
    height: 48px;
  }
  .dock-btn svg {
    width: 22px;
    height: 22px;
  }
  .subpage-hero {
    padding: 24px 0 20px 0;
  }
  .subpage-hero-title {
    font-size: 1.5rem;
  }
}
