/* ==========================================================================
   iqkurdistan.com - Ultra-Modern Luxury Digital Identity Stylesheet
   ========================================================================== */

:root {
  --bg-primary: #07090e;
  --bg-secondary: #0e121b;
  --card-bg: rgba(18, 24, 38, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 255, 255, 0.22);
  --glow-color: rgba(234, 179, 8, 0.15);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Brand Accents */
  --accent-gold: #eab308;
  --accent-gold-glow: rgba(234, 179, 8, 0.35);
  --accent-telegram: #229ed9;
  --accent-telegram-bg: rgba(34, 158, 217, 0.12);
  --accent-whatsapp: #25d366;
  --accent-whatsapp-bg: rgba(37, 211, 102, 0.12);
  --accent-viber: #7360f2;
  --accent-viber-bg: rgba(115, 96, 242, 0.12);
  --accent-phone: #38bdf8;
  --accent-phone-bg: rgba(56, 189, 248, 0.12);
  --accent-location: #f43f5e;
  --accent-location-bg: rgba(244, 63, 94, 0.12);
  
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.glow-top-left {
  top: -10%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.25) 0%, rgba(217, 119, 6, 0.1) 60%, transparent 80%);
}

.glow-bottom-right {
  bottom: -15%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(115, 96, 242, 0.12) 60%, transparent 80%);
}

/* Background Particles Container */
.ambient-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8), rgba(255, 255, 255, 0));
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}

/* Main Container */
.showcase-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 10;
}

/* Top Navigation Bar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(18, 24, 38, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eab308, #ca8a04);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.35);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4ade80;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
}

.nav-btn.primary {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  color: #0b0f19;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(234, 179, 8, 0.3);
}

.nav-btn.primary:hover {
  background: linear-gradient(135deg, #facc15 0%, #d97706 100%);
  box-shadow: 0 6px 24px rgba(234, 179, 8, 0.45);
}

/* ==========================================================================
   Split Layout (16:9 Showcase Ratio Grid)
   ========================================================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
  min-height: 640px;
}

/* Left Hero: Editorial Portrait Spotlight */
.visual-hero-pane {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #0d111a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
}

.portrait-card {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.portrait-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.portrait-card:hover .hero-photo {
  transform: scale(1.025);
}

.image-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.1) 0%,
    rgba(11, 15, 25, 0.2) 50%,
    rgba(11, 15, 25, 0.85) 90%,
    rgba(11, 15, 25, 0.98) 100%
  );
  pointer-events: none;
}

.golden-hour-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fde047;
}

.golden-hour-badge i {
  color: #eab308;
}

.portrait-info-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 5;
}

.person-tag .name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.person-tag .tagline {
  display: block;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-top: 4px;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: #e2e8f0;
}

.location-chip i {
  color: #f43f5e;
}

/* ==========================================================================
   Right Dashboard: Dark Glassmorphic Card
   ========================================================================== */
.dashboard-pane {
  display: flex;
  flex-direction: column;
}

.glass-dashboard-card {
  background: rgba(15, 20, 32, 0.7);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  height: 100%;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.domain-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #eab308;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact Channels Cards */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.channel-card.telegram:hover {
  background: var(--accent-telegram-bg);
  border-color: rgba(34, 158, 217, 0.4);
}

.channel-card.phone:hover {
  background: var(--accent-phone-bg);
  border-color: rgba(56, 189, 248, 0.4);
}

.channel-card.viber:hover {
  background: var(--accent-viber-bg);
  border-color: rgba(115, 96, 242, 0.4);
}

.channel-card.whatsapp:hover {
  background: var(--accent-whatsapp-bg);
  border-color: rgba(37, 211, 102, 0.4);
}

.channel-card.location:hover {
  background: var(--accent-location-bg);
  border-color: rgba(244, 63, 94, 0.4);
}

/* Channel Content Layout */
.channel-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.channel-card:hover .channel-icon-wrap {
  transform: scale(1.1);
}

.telegram .channel-icon-wrap {
  background: var(--accent-telegram-bg);
  color: var(--accent-telegram);
  border: 1px solid rgba(34, 158, 217, 0.25);
}

.phone .channel-icon-wrap {
  background: var(--accent-phone-bg);
  color: var(--accent-phone);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.viber .channel-icon-wrap {
  background: var(--accent-viber-bg);
  color: var(--accent-viber);
  border: 1px solid rgba(115, 96, 242, 0.25);
}

.whatsapp .channel-icon-wrap {
  background: var(--accent-whatsapp-bg);
  color: var(--accent-whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.location .channel-icon-wrap {
  background: var(--accent-location-bg);
  color: var(--accent-location);
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  margin-left: 14px;
}

.channel-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: var(--text-dim);
}

.channel-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: -0.2px;
}

.channel-action {
  flex-shrink: 0;
}

.action-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.channel-card:hover .action-badge {
  background: #ffffff;
  color: #0b0f19;
  border-color: #ffffff;
}

/* Custom layout for Phone Card with Split copy & call */
.channel-card.phone {
  padding: 10px 14px;
}

.channel-main-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}

.channel-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-action-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.icon-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.call-action {
  text-decoration: none;
}

/* Card Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.local-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.security-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #60a5fa;
}

/* Main Page Footer */
.main-footer {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-dim);
  padding: 8px 0;
}

/* ==========================================================================
   Modal Dialogs & Toasts
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0f1420;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.modal-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  color: #eab308;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.modal-header p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.qr-box {
  background: #080a10;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.qr-img {
  width: 190px;
  height: 190px;
  display: block;
  border-radius: 8px;
}

.qr-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-url {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.copy-url-btn {
  background: #eab308;
  color: #0b0f19;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.copy-url-btn:hover {
  background: #facc15;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification i {
  color: #22c55e;
  font-size: 1.1rem;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .visual-hero-pane {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .showcase-container {
    padding: 16px;
    gap: 20px;
  }

  .top-nav {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .nav-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .visual-hero-pane {
    height: 400px;
  }

  .glass-dashboard-card {
    padding: 24px 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
