/* ==========================================================================
   ANJALI RETAIL - PROFESSIONAL DESIGN SYSTEM 2025
   ========================================================================== */

:root {
  /* --- COLOR PALETTE --- */
  /* Primary Brand Colors */
  --primary-red: #C91F28;
  --primary-dark: #A01820;
  --primary-light: #FFE5E7;

  /* Professional Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #F3F4F6;
  --border-gray: #E5E7EB;
  --text-medium: #6B7280;
  --text-dark: #1F2937;
  --text-black: #111827;
  --dark-overlay: rgba(0, 0, 0, 0.65);

  /* Accents */
  --accent-orange: #F59E0B;
  /* Used very sparingly for highlights */
  --success-green: #10B981;

  /* --- TYPOGRAPHY --- */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Scale (Reduced for professional look) */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 2rem;
  /* 32px */
  --text-4xl: 2.5rem;
  /* 40px */

  /* --- SPACING & LAYOUT --- */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 5rem;
  /* 80px */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* --- EFFECTS --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-black);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--section-spacing) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bg-light {
  background-color: var(--off-white);
}

.bg-dark {
  background-color: var(--text-black);
  color: var(--white);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: var(--white);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: var(--text-sm);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-red);
}

.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-red);
  transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-black);
  transition: var(--transition);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  /* More squared/professional */
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-red);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* ==========================================================================
   HERO SECTION (Updated)
   ========================================================================== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background-image: url('Images/4.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  /* Larger for hero only */
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.hero-badges {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-wrap {
  background-color: var(--off-white);
  border-bottom: 1px solid var(--border-gray);
  padding: var(--space-md) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--text-medium);
}

.breadcrumb a {
  color: var(--text-medium);
}

.breadcrumb a:hover {
  color: var(--primary-red);
}

.breadcrumb-separator {
  margin: 0 var(--space-xs);
  color: var(--border-gray);
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-medium);
  margin-top: var(--space-xs);
}

.section-title {
  position: relative;
  display: inline-block;
}

/* Cards (Standardized) */
.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--primary-red);
  color: var(--white);
}

.card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--text-medium);
  margin: 0;
}

/* Stats Bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  padding: var(--space-xl) 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border-gray);
}

.timeline-item {
  position: relative;
  padding-left: 0;
  width: 50%;
  padding-bottom: var(--space-xl);
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 60px;
  text-align: left;
}

.timeline-marker {
  color: var(--primary-red);
  /* position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--primary-red);
  z-index: 1;
  text-align: center;
  line-height: 1; */
}

/* Mobile adjustments for very small screens */
@media (max-width: 640px) {
  .timeline-item {
    width: 45%;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 40px;
  }

  .timeline-item:nth-child(even) {
    padding-left: 40px;
  }

  .timeline-marker {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }
}

/* Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: var(--text-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 31, 40, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--text-black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--section-spacing) 0 var(--space-xl);
  font-size: var(--text-sm);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  grid-template-columns: auto auto auto auto;
}

.footer-section h3 {
  color: var(--white);
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  text-align: center;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--border-gray);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    box-shadow: var(--shadow-xl);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  background-color: var(--off-white);
  /* Changed to primary light (pinkish) */
  padding: var(--section-spacing) 0;
}

.calc-card-input {
  display: none;
}

.calc-option-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  min-height: 120px;
}

.calc-option-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.calc-card-input:checked+.calc-option-card {
  border-color: var(--primary-red);
  /* Changed to Red */
  background-color: #FFF5F5;
}

/* Checkmark badge for selected state */
.calc-card-input:checked+.calc-option-card::after {
  content: '\f00c';
  /* FontAwesome Check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: var(--primary-red);
  /* Changed to Red */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid var(--white);
}

.calc-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: #4B5563;
  transition: var(--transition);
}

.calc-card-input:checked+.calc-option-card .calc-icon {
  color: var(--primary-red);
  /* Changed to Red */
}

.calc-label-title {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.calc-label-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-black);
  margin-top: var(--space-xs);
  display: block;
}

.calc-input-group {
  margin-bottom: var(--space-xl);
}

.calc-header {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

/* Range Slider Styling */
.range-slider-container {
  padding: var(--space-md) 0;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.range-value-box {
  background: var(--white);
  border: 2px solid var(--primary-red);
  /* Changed to Red */
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  /* Changed to Red */
  min-width: 120px;
  text-align: center;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--primary-red);
  /* Changed to Red */
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 0 0 4px var(--primary-light);
  /* Changed to Light Red */
  border: 2px solid white;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #E5E7EB;
  border-radius: 3px;
}

/* Result Box */
.calc-result-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--border-gray);
}

.result-row:last-child {
  border-bottom: none;
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
  border-top: 2px solid var(--border-gray);
}

.result-label {
  color: var(--text-medium);
  font-size: var(--text-sm);
}

.result-value {
  font-weight: 600;
  color: var(--text-black);
}

.result-total {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
}

.green-btn {
  background-color: var(--primary-red);
  /* Changed to Red */
  color: white;
}

.green-btn:hover {
  background-color: var(--primary-dark);
  /* Changed to Dark Red */
  color: white;
}

/* Selected Plan styling specific overrides */
.calc-card-input:checked+.green-selected-card {
  background-color: var(--primary-red) !important;
  /* Changed to Red */
  color: white !important;
}

.calc-card-input:checked+.green-selected-card .calc-label-title,
.calc-card-input:checked+.green-selected-card .calc-label-price {
  color: white !important;
}