/* ==========================================================================
   PRindia Corporate Website - Custom Styling & Utilities
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --color-gold-light: #FDF8E2;
  --color-gold-medium: #E5C158;
  --color-gold-primary: #D4AF37;
  --color-gold-dark: #B89728;
  --color-gold-deep: #8C701B;
}

/* Base Reset & Typography */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

body {
  overflow-x: hidden;
  background-color: #FAFAFB;
  color: #1E293B;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-primary);
}

/* Glassmorphism & Cards */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #F1F5F9;
  background: #FFFFFF;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 35px -10px rgba(212, 175, 55, 0.15), 0 10px 15px -6px rgba(0, 0, 0, 0.05);
}

.service-icon-box {
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #FFFDF5 0%, #F8F1D1 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, #D4AF37 0%, #B89728 100%);
  color: #FFFFFF;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Gold Gradients and Buttons */
.bg-gold-gradient {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #B89728 100%);
}

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

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B89728 100%);
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.39);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
}

.btn-gold-outline {
  border: 2px solid #D4AF37;
  color: #B89728;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-gold-outline:hover {
  background: #D4AF37;
  color: #FFFFFF;
  box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Mobile Menu Animation */
.mobile-menu-enter {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-open {
  max-height: 500px;
  opacity: 1;
}
