/* ==========================================================================
   DEVELOPER PROFILE: ABDULLAH AL NAEEM — MODERN EXECUTIVE PORTFOLIO
   ========================================================================== */

:root {
  --aan-bg: #0B0F19;
  --aan-surface: #111827;
  --aan-surface-card: rgba(17, 24, 39, 0.85);
  --aan-border: rgba(255, 255, 255, 0.08);
  --aan-border-hover: rgba(245, 158, 11, 0.4);
  --aan-gold: #F59E0B;
  --aan-gold-dark: #D97706;
  --aan-gold-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
  --aan-text-light: #F9FAFB;
  --aan-text-muted: #9CA3AF;
  --aan-text-dim: #6B7280;
  --aan-radius: 12px;
}

.aan-pro-wrapper {
  position: relative;
  background-color: var(--aan-bg);
  color: var(--aan-text-light);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  padding: 40px 20px 60px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Ambient Radial Glows */
.aan-glow-top {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(11, 15, 25, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.aan-glow-bottom {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(11, 15, 25, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.aan-main-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 1;
}

/* Top Navigation Bar */
.aan-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--aan-border);
  border-radius: 50px;
  margin-bottom: 30px;
}

.aan-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #D1D5DB;
  letter-spacing: 0.2px;
}

.aan-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

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

.aan-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--aan-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.aan-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.aan-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--aan-gold-gradient);
  color: #000 !important;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aan-top-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

/* Executive Hero Section */
.aan-hero-card {
  background: var(--aan-surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--aan-border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.aan-hero-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.aan-avatar-column {
  display: flex;
  justify-content: center;
}

.aan-avatar-frame {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: visible;
}

.aan-avatar-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(245, 158, 11, 0.65);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.2);
  display: block;
}

.aan-status-indicator {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.aan-status-pulse {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: aanPulse 2s infinite;
}

@keyframes aanPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.aan-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.aan-tag-badge {
  background: rgba(245, 158, 11, 0.1);
  color: var(--aan-gold);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.aan-hero-name {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px 0;
  color: #fff;
  line-height: 1.15;
}

.aan-highlight {
  background: var(--aan-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aan-hero-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E5E7EB;
  margin: 0 0 14px 0;
  line-height: 1.5;
}

.aan-hero-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--aan-text-muted);
  line-height: 1.7;
  margin: 0 0 24px 0;
  max-width: 650px;
}

.aan-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aan-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--aan-gold-gradient);
  color: #0B0F19 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.25);
}

.aan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.aan-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  border: 1px solid var(--aan-border);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.aan-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Metrics Row */
.aan-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.aan-metric-item {
  background: var(--aan-surface-card);
  border: 1px solid var(--aan-border);
  border-radius: var(--aan-radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.aan-metric-item:hover {
  border-color: var(--aan-border-hover);
}

.aan-metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--aan-gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.aan-metric-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.aan-metric-sub {
  font-size: 11.5px;
  color: var(--aan-text-dim);
}

/* Body Grid: Services & Stack */
.aan-body-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.aan-card-panel {
  background: var(--aan-surface-card);
  border: 1px solid var(--aan-border);
  border-radius: var(--aan-radius);
  padding: 28px;
}

.aan-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.aan-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--aan-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aan-panel-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
}

.aan-panel-header p {
  font-size: 12.5px;
  color: var(--aan-text-dim);
  margin: 0;
}

/* Services List */
.aan-services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aan-service-card {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aan-service-card:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(3px);
}

.aan-service-icon {
  font-size: 20px;
  line-height: 1;
  padding-top: 2px;
}

.aan-service-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #F3F4F6;
  margin: 0 0 5px 0;
}

.aan-service-card p {
  font-size: 13px;
  color: var(--aan-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar: Stack & Connect */
.aan-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aan-stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aan-chip {
  background: rgba(255, 255, 255, 0.04);
  color: #D1D5DB;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.aan-chip:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--aan-gold);
}

/* Connect Card */
.aan-connect-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(17, 24, 39, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--aan-radius);
  padding: 26px;
  text-align: center;
}

.aan-connect-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.aan-connect-card p {
  font-size: 13px;
  color: var(--aan-text-muted);
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.aan-whatsapp-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  background: #10B981;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aan-whatsapp-card-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

.aan-social-links {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--aan-text-dim);
}

.aan-social-links a {
  color: var(--aan-gold);
  text-decoration: none;
  font-weight: 500;
}

.aan-social-links a:hover {
  text-decoration: underline;
}

.aan-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* Footer */
.aan-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--aan-border);
  font-size: 12.5px;
  color: var(--aan-text-dim);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .aan-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .aan-avatar-column {
    margin-bottom: 15px;
  }
  .aan-badge-group, .aan-cta-buttons {
    justify-content: center;
  }
  .aan-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aan-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .aan-top-bar {
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
  }
  .aan-metrics-grid {
    grid-template-columns: 1fr;
  }
  .aan-hero-card {
    padding: 24px 18px;
  }
}
