:root {
    /* --primary-color: #0d6efd; */
    --primary-color: #764ba2;
    --primary-dark: #0b5ed7;
    /* --primary-light: #cfe2ff; */
    --primary-light: #a78fbf33;
    --secondary-color: #ff6b35;
    --accent-color: #00d4ff;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --dark: #1a1f2e;
    --light: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #e0e0e0;
    --bg-gradient: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --summary-bg: #e7f1ff;
    --light-bg: #f4f7fe;
    --dark-navy: #1a2238;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


body { 
    background-color: var(--light-bg); 
    /* font-family: 'Inter', -apple-system, sans-serif; */
}

/* 1. Marquee matching Image 2 Navy Blue */
.top-marquee {
    /* background-color: var(--dark-navy); */
    /* color: #ffffff; */
    background-color: #e8f1f2;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    /* border-top: 3px solid var(--secondary-color); */
    /* border-bottom: 3px solid var(--secondary-color); */
    /* background-color: rgb(24, 32, 54); */
}

/* 2. Header Design from Image 1 / Colors from Image 2 */
.hero-banner {
    /* background: linear-gradient(135deg, #6a75ca 0%, #a2a7ff 100%); */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0 70px;
    text-align: center;
    color: white;
}

/* 3. Form Card (Same as image (28).jpg) */
.registration-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-top: -60px;
    padding: 30px;
}

.status-indicators {
    font-size: 0.75rem;
    margin-bottom: 25px;
}

.indicator-dot {
    height: 10px;
    width: 10px;
    display: inline-block;
    border-radius: 2px;
    margin-right: 5px;
}

/* Section Headers with Icons */
.section-title {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin: 25px 0 20px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    /* color: #555; */
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    color: var(--primary-blue);
    width: 16px;
}

.form-control, .form-select {
    border: 1px solid #e0e6ed;
    padding: 10px;
    font-size: 0.9rem;
    background-color: #fcfdfe;
}

/* 4. Booking Summary (Same as image (28).jpg) */
.summary-container {
    background-color: var(--summary-bg);
    border-radius: 6px;
    padding: 15px;
    margin-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #444;
}

.total-row {
    border-top: 2px solid #ffffff;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #d63384; /* Deep pink/red from summary total */
}

.btn-submit {
    background-color: var(--primary-blue);
    border: none;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color) !important;
    color: white;
    cursor: pointer;
    border-radius: 0.50rem !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #F50 0%, #FF894E 100%);
    border-color: #F73 !important;
    color: white;
    cursor: pointer;
    border-radius: 0.50rem !important;
}

/* 5. Footer (Same as image (28).jpg) */
/* footer {
    background-color: var(--dark-navy);
    color: #adb5bd;
    padding: 50px 0 20px;
    margin-top: 60px;
} */

/* ====================================
   Footer
   ==================================== */
.footer-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-section h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-address,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-address i,
.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-section a {
    /* color: var(--accent-color); */
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}


/* Software Company Showcase Section */
.software-company-section {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 25px;
  margin-top: -60px;
  animation: slideInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
}

.software-company-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 24px;
  /* margin-bottom: 32px; */
  position: relative;
  z-index: 1;
  animation: slideInLeft 0.7s ease-out;
}

.company-logo-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
  animation: scaleIn 0.6s ease-out;
  flex-shrink: 0;
}

.company-info {
  flex: 1;
  animation: slideInRight 0.7s ease-out;
}

.company-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}

.company-domain {
  font-size: 18px;
  color: #999;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.company-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

.company-badges {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out;
}

.company-badge {
  /* background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%); */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1px solid rgba(13, 110, 253, 0.2);
  color: var(--summary-bg);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.company-badge:hover {
  /* background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.1) 100%); */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  /* border-color: var(--primary); */
  border-color: var(--summary-bg);
  transform: translateY(-2px);
}

.company-badge i {
  font-size: 10px;
}

/* Highlight Section */
.highlight-section {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(13, 110, 253, 0.04) 100%);
  border: 2px solid rgba(13, 110, 253, 0.15);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  animation: slideInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.highlight-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.highlight-header {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  text-align: center;
  animation: slideInUp 0.7s ease-out;
}

.highlight-header h3 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.highlight-header p {
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.feature-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(13, 110, 253, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
  cursor: pointer;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
  transform: translateY(-6px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  transform: scale(1.1);
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* ====================================
   Booking Section
   ==================================== */
.booking-section {
    background: white;
    position: relative;
    z-index: 2;
}

.booking-header {
    animation: fadeInUp 0.8s ease;
}

.booking-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Legend */
.status-legend {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--primary-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legend-badge {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.legend-open {
    background: #198754;
    box-shadow: 0 0 8px rgba(25, 135, 84, 0.4);
}

.legend-closed {
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

.legend-pending {
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

/* Form Styling */
.form-label-custom {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label-custom i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.required {
    color: var(--danger-color);
}

.form-control-custom,
.form-select-custom {
    border: 2px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    background: #f8f9fa !important;
    transition: all 0.3s ease !important;
}

.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--primary-color) !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1) !important;
}

.form-control-custom::placeholder {
    color: var(--text-light) !important;
}

/* Form Section Header */
.form-section-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
    margin-bottom: 1.5rem !important;
}

/* Price Summary */
.price-summary {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(207, 226, 255, 0.5) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-body {
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-divider {
    height: 1px;
    background: rgba(13, 110, 253, 0.2);
    margin: 0.3rem 0;
}

.price-total {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.price-total .price-value {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Terms Wrapper */
.terms-wrapper {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
    color: white;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
}

.section-title-book {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle-book {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Status Legend (Tips) */
.status-box {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.bg-booking-open { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.bg-darshan-closed { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.bg-not-open { background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

.dot { height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 5px; }

.note-text {
    color: #c0392b;
    font-size: 16px;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 760px) {
  .company-logo-box {
    display: none;
  }
  .company-name {
    font-size: 22px;
  }
}