/* Base Colors & Variables */
:root {
  --bg-dark: #ffffff;
  --bg-dark-secondary: #f6f8fc;
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(28, 21, 128, 0.08);
  --card-border-hover: rgba(92, 84, 255, 0.35);
  
  --accent-primary: #1C1580; /* Globotron Blue/Indigo brand base */
  --accent-secondary: #4F46E5; /* Indigo/violet accent */
  --accent-cyan: #0EA5E9; /* Cyan */
  --accent-green: #10B981; /* Emerald / Online Status */
  
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #94a3b8; /* Slate 400 */
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* CSS Reset & General Styling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ambient Glowing Background Orbs */
.glow-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(92, 102, 255, 0.12) 0%, rgba(14, 165, 233, 0.01) 70%);
  animation: float-blob-1 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(92, 84, 255, 0.01) 70%);
  animation: float-blob-2 20s infinite alternate ease-in-out;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(92, 84, 255, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
  animation: float-blob-3 30s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 120px) scale(1.1); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, -60px) scale(0.9); }
}

@keyframes float-blob-3 {
  0% { transform: translate(-50%, -50%) translate(-40px, -40px); }
  100% { transform: translate(-50%, -50%) translate(40px, 40px); }
}

/* Page Container & Layout */
.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 5.5rem;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* Main Layout */
.main-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 1.5rem;
  text-align: center;
}

/* Panel: Content */
.content-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
}

.status-badge-container {
  margin-bottom: 1.75rem;
  animation: fadeIn 0.8s ease-out;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-green 2s infinite;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@keyframes pulse-green {
  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 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.main-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine-text 6s linear infinite;
}

@keyframes shine-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}





/* Contact Details Cards Section */
.contact-section {
  padding: 1.5rem 0 3rem;
  text-align: center;
  border-top: 1px solid rgba(28, 21, 128, 0.06);
  margin-top: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.25rem 1.75rem;
  border-radius: 24px;
  backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 21, 128, 0.02);
}

/* Top accent hover glow lines on cards */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-cyan), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(28, 21, 128, 0.05), 0 0 30px rgba(92, 84, 255, 0.01);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: rgba(28, 21, 128, 0.03);
  border: 1px solid rgba(28, 21, 128, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.contact-card:hover .card-icon-wrapper {
  background: rgba(28, 21, 128, 0.08);
  border-color: rgba(28, 21, 128, 0.15);
  color: var(--accent-primary);
  transform: scale(1.05);
}

.card-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 500;
  word-break: break-word;
  transition: var(--transition-fast);
}

.contact-card:hover .contact-detail {
  color: var(--text-primary);
}

.action-hint {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.contact-card:hover .action-hint {
  opacity: 1;
}

/* Success hint toggle state for Clipboard Copy */
.action-hint .hint-success {
  display: none;
  color: var(--accent-green);
}

.contact-card.copied .action-hint .hint-default {
  display: none;
}

.contact-card.copied .action-hint .hint-success {
  display: inline;
}

.contact-card.copied .card-icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-green);
}

/* Footer Section */
.footer {
  margin-top: auto;
  padding: 2rem 0 3rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 21, 128, 0.06) 20%, rgba(28, 21, 128, 0.06) 80%, transparent);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Fade-in & Slide-up Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .main-layout {
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .page-container {
    padding: 0 1.5rem;
  }
  
  .main-layout {
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .status-badge {
    padding: 0.4rem 0.8rem;
  }
}
