/* 
  =========================================
  360° Quotation & Bill - Global Stylesheet
  Theme: Professional Light Theme & Tactile 3D
  Fonts: Outfit & Poppins (Google Fonts)
  =========================================
*/

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

/* --- Custom Variables & Tokens (Light Theme) --- */
:root {
  /* Color Palette */
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --primary-glow: #4f46e5; /* Indigo */
  --primary-glow-rgb: 79, 70, 229;
  
  --accent-cyan: #0ea5e9; /* Sky Blue */
  --accent-cyan-rgb: 14, 165, 233;
  
  --accent-purple: #9333ea;
  
  --text-primary: #0f172a; /* Dark Slate */
  --text-secondary: #475569; /* Slate Gray */
  --text-muted: #64748b; /* Cool Gray */
  
  --success: #16a34a; /* Professional Green */
  --success-rgb: 22, 163, 74;
  
  --border-glass: rgba(15, 23, 42, 0.08);
  --border-glass-active: rgba(79, 70, 229, 0.3);
  
  /* Tactile 3D Shadows for Light Theme */
  --shadow-3d-sm: 0 3px 0 rgba(15, 23, 42, 0.08), 0 5px 10px rgba(0, 0, 0, 0.03);
  --shadow-3d-md: 0 6px 0 rgba(79, 70, 229, 0.12), 0 12px 24px rgba(0, 0, 0, 0.06);
  --shadow-3d-lg: 0 8px 0 rgba(15, 23, 42, 0.12), 0 16px 32px rgba(0, 0, 0, 0.08);
  --shadow-3d-cyan: 0 6px 0 rgba(14, 165, 233, 0.15), 0 12px 24px rgba(14, 165, 233, 0.06);
  --shadow-inner-glow: inset 0 0 10px rgba(0, 0, 0, 0.01);
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #edf2f9 0%, var(--bg-dark) 70%);
  background-attachment: fixed;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }

/* --- Tactile 3D Buttons (Light Theme) --- */
.btn-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  transform: translateY(-4px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  outline: none;
}

.btn-primary-3d {
  background: linear-gradient(135deg, var(--primary-glow), #6366f1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 0 #312e81, 0 10px 18px rgba(79, 70, 229, 0.15);
}

.btn-primary-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 #312e81, 0 6px 12px rgba(79, 70, 229, 0.2);
}

.btn-primary-3d:active {
  transform: translateY(2px);
  box-shadow: 0 0px 0 #312e81, 0 3px 8px rgba(79, 70, 229, 0.1);
}

.btn-cyan-3d {
  background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 0 #0369a1, 0 10px 18px rgba(14, 165, 233, 0.15);
}

.btn-cyan-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 #0369a1, 0 6px 12px rgba(14, 165, 233, 0.2);
}

.btn-cyan-3d:active {
  transform: translateY(2px);
  box-shadow: 0 0px 0 #0369a1, 0 3px 8px rgba(14, 165, 233, 0.1);
}

.btn-secondary-3d {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  box-shadow: 0 5px 0 rgba(15, 23, 42, 0.1), 0 10px 18px rgba(0, 0, 0, 0.05);
}

.btn-secondary-3d:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 rgba(15, 23, 42, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary-3d:active {
  transform: translateY(2px);
  box-shadow: 0 0px 0 rgba(15, 23, 42, 0.1), 0 3px 8px rgba(0, 0, 0, 0.03);
}

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-cyan));
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
  font-style: normal;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Features Dropdown Navigation --- */
.dropdown-trigger {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.dropdown-trigger:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--primary-glow);
  padding-left: 24px;
}


/* --- Multi-Language Selector Dropdown --- */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background: #f8fafc;
  border-color: var(--primary-glow);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  border-radius: 12px;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  padding: 6px 0;
  z-index: 1100;
  animation: slideUp 0.25s ease forwards;
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.lang-option:hover {
  background: #f1f5f9;
  color: var(--primary-glow);
}

.lang-option.active {
  color: var(--primary-glow);
  font-weight: 700;
  background: #e0e7ff;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* --- Hero Section & Carousel --- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0e7ff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  color: var(--primary-glow);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--border-glass);
  padding-top: 25px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-glow);
}

.hero-badge-txt {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --- Hero Image Carousel (Light Theme) --- */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  perspective: 1200px;
}

.carousel-frame {
  position: relative;
  width: 100%;
  height: 570px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  padding: 10px;
  box-shadow: var(--shadow-3d-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
  transform: translateX(100%) scale(0.95);
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 10;
}

.carousel-slide.prev {
  transform: translateX(-100%) scale(0.95);
}

/* Mockup Details (Light Theme) */
.mockup-header {
  background: #ffffff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mockup-app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.mockup-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  background: #f8fafc;
}

.mockup-card-3d {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  position: relative;
}

.mockup-bill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
  color: var(--text-secondary);
}

.mockup-total-box {
  background: #e0e7ff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.mockup-total-box .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-glow);
}

.mockup-btn {
  background: var(--primary-glow);
  color: #ffffff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 0 #312e81;
  cursor: pointer;
}

/* Dot Navigation */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--primary-glow);
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.3);
}

/* Floating Clean Cards */
.floating-card-1 {
  position: absolute;
  top: 25%;
  left: -30px;
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 25;
  animation: float 4s infinite ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-2 {
  position: absolute;
  bottom: 15%;
  right: -30px;
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 25;
  animation: float 5s infinite ease-in-out 1s;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Features Grid Section --- */
.features-section {
  position: relative;
  z-index: 2;
}

.section-title-box {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-active);
  box-shadow: var(--shadow-3d-cyan);
}

.feature-icon-wrapper {
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.15);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary-glow);
  color: #fff;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Testimonial Section --- */
.testimonials-section {
  background: #f1f5f9;
  position: relative;
}

.rating-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.stars {
  color: #eab308; /* Premium Gold */
  font-size: 1.35rem;
  letter-spacing: 2px;
}

.rating-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 45px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.user-info h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--primary-glow);
  font-weight: 600;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* --- Accordion FAQ Section --- */
.faq-section {
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.faq-header {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--primary-glow);
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
  padding: 0 26px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.faq-item.active {
  border-color: var(--border-glass-active);
  box-shadow: var(--shadow-3d-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* --- Footer Section --- */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

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

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--primary-glow);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20px;
  height: 2px;
  background: var(--primary-glow);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary-glow);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- LOGIN PAGE STYLING --- */
.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 100vh;
  background: #f1f5f9;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid var(--border-glass-active);
  border-radius: 20px;
  box-shadow: var(--shadow-3d-cyan);
  overflow: hidden;
  animation: slideUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.login-header-glow {
  background: linear-gradient(135deg, #e0e7ff, #e0f2fe);
  padding: 25px 35px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.login-app-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 0.85rem;
  color: var(--primary-glow);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.login-form-box {
  padding: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-glow);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.1);
}

.forgot-link {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--primary-glow);
  margin-top: 6px;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  margin-top: 8px;
}

.demo-login-hint {
  margin-top: 25px;
  background: #f8fafc;
  border: 1px dashed rgba(79, 70, 229, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
}

.demo-hint-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-glow);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-details {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-click-btn {
  background: #e0e7ff;
  border: 1px solid rgba(79, 70, 229, 0.25);
  color: var(--primary-glow);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  transition: var(--transition-fast);
}

.demo-click-btn:hover {
  background: var(--primary-glow);
  color: #ffffff;
}

/* --- PRICING PAGE STYLING --- */
.pricing-toggle-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
}

.toggle-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.toggle-label.active {
  color: var(--primary-glow);
}

.pricing-switch {
  position: relative;
  width: 54px;
  height: 28px;
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pricing-switch-dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: var(--primary-glow);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.pricing-switch.yearly .pricing-switch-dot {
  left: 28px;
  background: var(--accent-purple);
}

.pricing-discount-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  border-color: #6c42f5;
  box-shadow: 0 10px 30px rgba(108, 66, 245, 0.08), 0 8px 0 rgba(108, 66, 245, 0.15);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c853; /* vibrant green */
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
  z-index: 10;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.premium:hover {
  box-shadow: 0 10px 0 rgba(79, 70, 229, 0.15), 0 16px 32px rgba(79, 70, 229, 0.08);
}

.pricing-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  min-height: 44px;
}

.pricing-price-box {
  margin-bottom: 25px;
}

.pricing-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: top;
  color: var(--primary-glow);
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 35px;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature-item i {
  color: var(--primary-glow);
  font-size: 1rem;
}

.pricing-feature-item.disabled {
  color: var(--text-muted);
}

.pricing-feature-item.disabled i {
  color: var(--text-muted);
}

.pricing-card .btn-3d {
  width: 100%;
}

/* --- CONTACT PAGE STYLING --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Interactive Vector Map */
.contact-map-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-mockup {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.map-radar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-glow);
  animation: pulseRadar 3s infinite ease-out;
  position: absolute;
}

.map-pin {
  width: 12px;
  height: 12px;
  background: var(--primary-glow);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-glow);
  z-index: 2;
  position: relative;
}

.map-info {
  margin-top: 10px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--primary-glow);
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

@keyframes pulseRadar {
  0% {
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.7rem; }
  .hero-grid { gap: 30px; }
  .carousel-frame { height: 480px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .carousel-container { margin-top: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .section-title { font-size: 1.85rem; }
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; width: 100%; gap: 14px; }
  .hero-cta .btn-3d { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.95rem; }
  .carousel-frame { height: 380px; border-radius: 20px; }
  .carousel-container { max-width: 300px; }
  .login-form-box { padding: 25px 20px; }
  .contact-form-card { padding: 25px 20px; }
}
