/* ============================================
   RUKHSANA AHMED-SUAREZ — AI AGENCY WEBSITE
   Custom Styles — Warm Dark / Editorial Premium
   ============================================ */

/* ---- Fonts ---- */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-space {
  font-family: 'Space Grotesk', sans-serif;
}

/* ---- Smooth Scroll ---- */
html {
  scroll-behavior: smooth;
}

/* ---- Gradient Text — Gold to Fuchsia (signature look) ---- */
.gradient-text {
  background: linear-gradient(135deg, #E8C86A 0%, #E040FB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #D4A843 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Background Patterns ---- */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(212, 168, 67, 0.09) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.hero-glow {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(14, 165, 197, 0.07) 0%, transparent 70%);
}

/* ---- Navigation ---- */
#navbar {
  background-color: rgba(10, 8, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(212, 168, 67, 0.08), 0 4px 32px rgba(212, 168, 67, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background-color: rgba(10, 8, 18, 0.96);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  box-shadow: 0 1px 0 rgba(212, 168, 67, 0.15), 0 4px 40px rgba(212, 168, 67, 0.1);
}

/* ---- Buttons ---- */
.btn-gold {
  background-color: #D4A843;
  color: #0D0A08;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  padding: 14px 32px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: #E0B550;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid #E040FB;
  color: #E040FB;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  padding: 12px 32px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
}

.btn-outline:hover {
  background-color: #E040FB;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(224, 64, 251, 0.3);
  transform: translateY(-1px);
}

/* ---- Cards ---- */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(212, 168, 67, 0.14);
  border-color: rgba(212, 168, 67, 0.2) !important;
}

.pain-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.25) !important;
}

.testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* ---- Voice Agent Demo Section ---- */
.voice-demo-widget {
  background: linear-gradient(135deg, #0C0A16 0%, #100E1A 50%, #0A0812 100%);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(212, 168, 67, 0.06), inset 0 1px 0 rgba(255,255,255,0.04);
}

.voice-demo-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Pulse Animation (voice agent call button) ---- */
.pulse-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pulse-btn::before,
.pulse-btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.35);
  animation: pulse-ring 2.5s ease-out infinite;
}

.pulse-btn::before {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.pulse-btn::after {
  width: 100%;
  height: 100%;
  animation-delay: 0.7s;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
}

/* ---- Workflow Cards (Hero Visual) ---- */
.workflow-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.workflow-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, #D4A843, #22D3EE);
  margin: 0 auto;
  border-radius: 4px;
}

/* ---- Float animation for hero visual ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* ---- Badge / Pill ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: #E8C86A;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 6px 14px;
  border-radius: 9999px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22D3EE;
  display: inline-block;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Section Labels ---- */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A843;
}

/* ---- Divider ---- */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.25), transparent);
}

/* ---- Stat Numbers — gold for editorial weight ---- */
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #D4A843;
  line-height: 1;
}

/* ---- About section image placeholder ---- */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #100E1A 0%, #0C0A14 50%, #0A0812 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  border: 1px dashed rgba(212, 168, 67, 0.25);
  position: relative;
  overflow: hidden;
}

.photo-placeholder::after {
  content: 'Your photo here';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  color: #E8C86A;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Mobile Menu ---- */
#mobile-menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.hidden {
  display: none;
}

/* ---- Credential chips ---- */
.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #C4C4D0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
}

/* ---- Testimonial quote mark ---- */
.quote-mark {
  font-size: 84px;
  line-height: 0.6;
  color: rgba(212, 168, 67, 0.2);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

/* ---- Cream sections — About & Testimonials ---- */
#about h2 {
  color: #1C1208;
}

#about p {
  color: #4A3828;
}

#about .credential-chip {
  background: rgba(28, 18, 8, 0.06);
  border-color: rgba(28, 18, 8, 0.12);
  color: #4A3828;
}

#about .photo-placeholder {
  background: linear-gradient(135deg, #EDE5D8 0%, #F0EAE0 50%, #E8E0D5 100%);
  border-color: rgba(180, 130, 40, 0.3);
}

#testimonials h2 {
  color: #1C1208;
}

#testimonials .quote-mark {
  color: rgba(180, 130, 40, 0.45);
}

/* ---- Form inputs dark styling ---- */
input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #F5EDD8 !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #6B6050 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #D4A843 !important;
  background: rgba(212, 168, 67, 0.05) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

/* ---- Responsive adjustments ---- */
@media (max-width: 768px) {
  .btn-gold, .btn-outline {
    padding: 13px 24px;
    font-size: 15px;
  }

  .voice-demo-widget {
    padding: 36px 24px;
  }
}
