/* ==========================================================================
   ODISHA DIGITAL SOLUTION - LUXURY GOLD, SILVER & CYAN DIGITAL DESIGN SYSTEM
   Matches Official Logo: Gold Seal, Silver Text, Cyan Digital Pixel Glow, Deep Dark Blue/Black
   ========================================================================== */

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

:root {
  --bg-dark: #040814;
  --bg-card: #091226;
  --bg-card-hover: #101C38;
  --bg-glass: rgba(9, 18, 38, 0.85);
  
  --border-color: rgba(212, 175, 55, 0.15);
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-cyan: rgba(0, 210, 255, 0.4);
  
  /* Metallic Gold Palette */
  --gold-primary: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #996515;
  --gold-gradient: linear-gradient(135deg, #FFF099 0%, #D4AF37 40%, #B8860B 75%, #AA771C 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  /* Silver Metallic Palette */
  --silver-primary: #E2E8F0;
  --silver-light: #FFFFFF;
  --silver-muted: #94A3B8;
  --silver-gradient: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  
  /* Cyan Digital Accent Palette */
  --cyan-primary: #00D2FF;
  --cyan-hover: #00A3FF;
  --cyan-glow: rgba(0, 210, 255, 0.35);
  --cyan-light: rgba(0, 210, 255, 0.12);
  
  --text-white: #FFFFFF;
  --text-body: #CBD5E1;
  --text-muted: #94A3B8;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
  --shadow-cyan: 0 10px 30px -5px rgba(0, 210, 255, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Digital Grid Background Effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: -1;
}

/* Typography & Text Gradients */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

.cyan-text {
  color: var(--cyan-primary);
}

.gold-text {
  color: var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 8, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(4, 8, 20, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
  padding: 0.25rem 0;
}

.top-bar {
  background: linear-gradient(90deg, #071026 0%, #0A1633 50%, #071026 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--text-body);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
}

.top-bar-info a:hover {
  color: var(--gold-primary);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold), 0 0 15px rgba(0, 210, 255, 0.3);
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.05) rotate(3deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--silver-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-tagline {
  font-size: 0.58rem;
  color: var(--cyan-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #040814;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -5px rgba(212, 175, 55, 0.6);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-primary), #0088FF);
  color: #040814;
  font-weight: 800;
  box-shadow: var(--shadow-cyan);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -5px rgba(0, 210, 255, 0.6);
}

.btn-admin {
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan-primary);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-admin:hover {
  background: rgba(0, 210, 255, 0.25);
  color: white;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Page Views */
.page-view {
  display: none;
  animation: fadeIn 0.4s ease;
}

.page-view.active {
  display: block;
}

/* Hero Section */
.hero {
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.badge-pulse-gold {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 3.9rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Calculator Card */
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.1);
  position: relative;
  backdrop-filter: blur(14px);
}

.calc-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--cyan-primary), transparent);
}

.calc-header {
  margin-bottom: 1.5rem;
}

.calc-title {
  font-size: 1.35rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(4, 8, 20, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.range-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.range-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  accent-color: var(--gold-primary);
}

.range-value {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
}

.calc-results {
  background: rgba(4, 8, 20, 0.9);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.calc-result-item {
  display: flex;
  flex-direction: column;
}

.calc-result-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
}

.calc-result-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pamphlet & Special Offer Section */
.pamphlet-section {
  background: linear-gradient(180deg, #040814 0%, #081126 100%);
  padding: 90px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pamphlet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.pamphlet-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold), 0 0 40px rgba(0, 210, 255, 0.2);
  transition: transform 0.4s ease;
}

.pamphlet-img-wrap:hover {
  transform: scale(1.02);
}

.pamphlet-img {
  width: 100%;
  height: auto;
  display: block;
}

.demo-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 210, 255, 0.15));
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.demo-card::before {
  content: 'LIMITED TIME OFFER';
  position: absolute;
  top: 18px;
  right: -35px;
  background: #E11D48;
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.demo-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  margin: 0.5rem 0;
}

/* Pricing Grid (Matches Pamphlet) */
.pamphlet-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pkg-card.basic {
  border-color: #3B82F6;
}
.pkg-card.standard {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(1.03);
}
.pkg-card.premium {
  border-color: #10B981;
}

.pkg-header {
  padding: 1.5rem;
  text-align: center;
  color: white;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-header.basic { background: linear-gradient(135deg, #1D4ED8, #3B82F6); }
.pkg-header.standard { background: var(--gold-gradient); color: #040814; }
.pkg-header.premium { background: linear-gradient(135deg, #047857, #10B981); }

.pkg-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-price-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pkg-original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pkg-price {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
}

.pkg-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 4px;
}

.pkg-badge.basic { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.pkg-badge.standard { background: rgba(212, 175, 55, 0.2); color: var(--gold-light); }
.pkg-badge.premium { background: rgba(16, 185, 129, 0.2); color: #34D399; }

.pkg-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pkg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.pkg-item i {
  color: var(--gold-primary);
}

/* Feature Bar */
.features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3.5rem;
  text-align: center;
}

.feature-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature-bar-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
}

/* Section Header */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--gold-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Portfolio & Testimonials */
.portfolio-grid, .testimonials-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.portfolio-card, .testimonial-card, .blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.portfolio-card:hover, .testimonial-card:hover, .blog-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-white);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #040814;
  font-size: 0.75rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp Chat Window */
.wa-chat-popup {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 1000;
  width: 350px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.wa-chat-popup.active {
  display: block;
}

.wa-chat-header {
  background: #075E54;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-chat-body {
  padding: 1.25rem;
  background: rgba(4, 8, 20, 0.95);
}

.wa-chat-msg {
  background: rgba(9, 18, 38, 0.9);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid #25D366;
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wa-option-btn {
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.wa-option-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Modals & Admin Portal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 8, 20, 0.88);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.admin-portal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg-dark);
  display: none;
  flex-direction: column;
}

.admin-portal.active {
  display: flex;
}

.admin-header {
  height: 75px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.admin-layout {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.admin-sidebar {
  width: 250px;
  background: rgba(9, 18, 38, 0.8);
  border-right: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
}

.admin-menu-item {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.admin-menu-item:hover, .admin-menu-item.active {
  background: var(--gold-gradient);
  color: #040814;
}

.admin-main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: rgba(9, 18, 38, 0.9);
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* Footer */
.footer {
  background: #02050E;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 4000;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast-notification.show {
  transform: translateX(0);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid, .pamphlet-grid {
    grid-template-columns: 1fr;
  }
  .pkg-card.standard {
    transform: none;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .nav-links {
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
