/* 
   Vrindaban Textiles - Premium Stylesheet
   Theme: Royal Indian Ethnic Modern (Crimson & Gold)
   Fonts: Playfair Display (Serif), Outfit (Sans-serif)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --color-primary: #800020;      /* Deep Crimson / Burgundy */
  --color-primary-dark: #4A0010; /* Dark Maroon */
  --color-primary-light: #A31D3A;/* Vibrant Rose Crimson */
  --color-secondary: #D4AF37;    /* Metallic Gold */
  --color-secondary-light: #FFDF73; /* Pale Gold */
  --color-secondary-dark: #AA771C;  /* Bronze Gold */
  --color-bg-light: #FDFBF7;     /* Warm Cream */
  --color-bg-alt: #FAF5EC;       /* Soft Sand Cream */
  --color-text-dark: #2C1E1B;    /* Charcoal Brown */
  --color-text-light: #FFFFFF;   /* White */
  --color-text-muted: #6E5E5A;   /* Muted Warm Gray */
  --color-success: #2E7D32;      /* Emerald Green */
  
  /* Fonts */
  --font-title: 'Playfair Display', 'Noto Sans Devanagari', serif;
  --font-body: 'Outfit', 'Noto Sans Devanagari', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(128, 0, 32, 0.05), 0 2px 4px -1px rgba(128, 0, 32, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(128, 0, 32, 0.1), 0 4px 6px -2px rgba(128, 0, 32, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(128, 0, 32, 0.15), 0 10px 10px -5px rgba(128, 0, 32, 0.08);
  --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
  --shadow-crimson-glow: 0 0 20px rgba(128, 0, 32, 0.25);
  
  /* Transition */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 5px;
  border: 2px solid var(--color-bg-alt);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Language Selection Handling */
/* 
   By default, we show elements based on the active language class on the body.
   e.g., body.lang-en shows [lang="en"] and hides [lang="hi"].
   body.lang-hi shows [lang="hi"] and hides [lang="en"].
*/
body.lang-en [lang="hi"] {
  display: none !important;
}

body.lang-hi [lang="en"] {
  display: none !important;
}

/* Typography & Layout elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-text-muted);
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(214, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-secondary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-title);
  font-weight: bold;
}

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

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Language Toggle Switch */
.lang-toggle {
  background: var(--color-bg-alt);
  border: 1px solid rgba(214, 175, 55, 0.4);
  padding: 4px;
  border-radius: 30px;
  display: flex;
  gap: 2px;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  box-shadow: 0 4px 10px rgba(128, 0, 32, 0.2);
}

.cta-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.cta-btn-gold {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.cta-btn-gold:hover {
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-crimson-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at 10% 20%, rgba(250, 245, 236, 0.8) 0%, rgba(253, 251, 247, 0.9) 90%), 
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23800020' fill-opacity='0.02'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm1-61c3.148 0 5.7-2.552 5.7-5.7 0-3.148-2.552-5.7-5.7-5.7-3.148 0-5.7 2.552-5.7 5.7 0 3.148 2.552 5.7 5.7 5.7zm50 11c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM9 55c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm86-5c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-79 7c3.148 0 5.7-2.552 5.7-5.7 0-3.148-2.552-5.7-5.7-5.7-3.148 0-5.7 2.552-5.7 5.7 0 3.148 2.552 5.7 5.7 5.7zm30-22c3.148 0 5.7-2.552 5.7-5.7 0-3.148-2.552-5.7-5.7-5.7-3.148 0-5.7 2.552-5.7 5.7 0 3.148 2.552 5.7 5.7 5.7z'/%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 175, 55, 0.15);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  align-self: flex-start;
  background: rgba(128, 0, 32, 0.08);
  border: 1px solid rgba(128, 0, 32, 0.2);
  color: var(--color-primary-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge i {
  color: var(--color-secondary-dark);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 60%, var(--color-secondary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-price-tag {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.03) 0%, rgba(214, 175, 55, 0.08) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  border-radius: 0 16px 16px 0;
}

.hero-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.hero-price-gst {
  font-size: 1rem;
  color: var(--color-secondary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.trust-badge i {
  color: var(--color-primary-light);
  font-size: 1.1rem;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-crimson-glow);
  border: 4px solid var(--color-secondary);
}

.hero-image {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-bg-pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--color-secondary);
  border-radius: var(--border-radius-lg);
  z-index: 1;
}

/* Sections General */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.section-subtitle {
  color: var(--color-secondary-dark);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

/* Elegant ornamental line under section title */
.section-title::after {
  content: '❖';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-family: initial;
  height: 2px;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--color-secondary) 30%, var(--color-secondary) 70%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* Package Details Section */
.package-intro-box {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border: 3px solid var(--color-secondary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.package-intro-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z'/%3E%3C/g%3E%3C/svg%3E");
}

.package-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.package-intro-text h3 {
  color: var(--color-secondary-light);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.package-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.package-intro-price {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  backdrop-filter: blur(5px);
}

.package-intro-price .price-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary-light);
  margin-bottom: 0.5rem;
}

.package-intro-price .price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.package-intro-price .price-gst {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--color-bg-light);
  border: 1px solid rgba(128, 0, 32, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: rgba(214, 175, 55, 0.6);
}

.package-card:hover::before {
  height: 6px;
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #FAF5EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--color-primary);
  border: 1px solid rgba(128, 0, 32, 0.15);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
  transition: var(--transition-normal);
}

.package-card:hover .card-icon-wrapper {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.card-qty {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-primary-dark);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Profit & Order Calculator Section */
.calc-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.calc-box {
  background: var(--color-bg-light);
  border: 2px solid rgba(214, 175, 55, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.calc-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-title i {
  color: var(--color-secondary-dark);
}

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

.form-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.form-label span.highlight {
  color: var(--color-primary-light);
  font-family: var(--font-body);
}

/* Styling range slider */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--color-bg-alt);
  outline: none;
  border: 1px solid rgba(214, 175, 55, 0.2);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-value-input {
  width: 70px;
  padding: 0.5rem;
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: var(--border-radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  font-family: var(--font-body);
  background: var(--color-bg-light);
}

.slider-value-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.calc-breakdown {
  border-top: 1px dashed rgba(128, 0, 32, 0.2);
  border-bottom: 1px dashed rgba(128, 0, 32, 0.2);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.breakdown-row.total {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

.calc-profit-box {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(46, 125, 50, 0.1) 100%);
  border: 1px solid rgba(46, 125, 50, 0.25);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profit-title {
  font-weight: 700;
  color: var(--color-success);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profit-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-success);
  line-height: 1.2;
  font-family: var(--font-body);
}

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

/* Order Form Container */
.form-box {
  background: var(--color-bg-alt);
  border: 1px solid rgba(128, 0, 32, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-box-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-box-title i {
  color: var(--color-primary);
}

.input-field {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(128, 0, 32, 0.2);
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.submit-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 2px solid #128C7E;
  margin-bottom: 1rem;
}

.submit-btn-whatsapp:hover {
  background: #20BA56;
  border-color: #0F786C;
  box-shadow: var(--shadow-lg), 0 0 15px rgba(37, 211, 102, 0.4);
}

/* How to Start / Order Process Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 2rem;
}

/* Timeline connection line on desktop */
.steps-container::after {
  content: '';
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed rgba(214, 175, 55, 0.4);
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-gold), var(--shadow-sm);
  transition: var(--transition-normal);
}

.step-card:hover .step-number {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: var(--shadow-lg), var(--shadow-crimson-glow);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* FAQs Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--color-bg-light);
  border: 1px solid rgba(128, 0, 32, 0.15);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: var(--transition-fast);
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(128, 0, 32, 0.05);
  color: var(--color-primary);
  transition: var(--transition-normal);
  font-weight: bold;
}

.faq-item.active {
  border-color: var(--color-primary-light);
}

.faq-item.active .faq-question {
  background: var(--color-bg-alt);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: var(--color-text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  color: var(--color-text-light);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner h2 {
  color: var(--color-secondary-light);
  font-size: 3rem;
  line-height: 1.2;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(214, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: #1A0D0B;
  color: #ECE5E3;
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--color-secondary-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-title);
  border: 1px solid var(--color-text-light);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-family: var(--font-title);
  color: var(--color-text-light);
  font-weight: 800;
}

.footer-desc {
  font-size: 0.9rem;
  color: #B5A4A0;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: #B5A4A0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-secondary-light);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #B5A4A0;
}

.contact-item i {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #33221F;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: #8C7A76;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2C1E1B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B5A4A0;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), var(--shadow-gold);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20BA56;
  transform: scale(1.1);
  color: white;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    border-bottom: 2px solid var(--color-secondary);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-badge, .hero-price-tag {
    align-self: center;
  }
  
  .hero-actions, .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-image-container {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .package-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .package-intro-text p {
    margin: 0 auto 1.5rem;
  }
  
  .calc-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .steps-container::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-price-amount {
    font-size: 2rem;
  }
  
  .calc-box, .form-box {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

/* CSS Utility for Scroll Reveal Animations */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Page Load Fade-In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}


