* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #111827;
}

/* Brand Colors */
:root {
  --brand-cream: #FFF5E6;
  --brand-orange: #FF6A00;
  --brand-yellow: #FFB60A;
  --brand-dark: #111827;
  --brand-footer: #0D0D16;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  background: var(--brand-cream);
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}



.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--brand-dark);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: var(--brand-orange);
  background: rgba(255, 106, 0, 0.1);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--brand-orange);
  color: white;
}

.btn-primary:hover {
  background: #e55a00;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
}

.btn-secondary:hover {
  color: var(--brand-orange);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--brand-cream) 0%, white 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon {
  width: 8rem;
  height: 8rem;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-size: 4rem;
  animation: pulse 2s infinite;
}

.btn-cta {
  background: var(--brand-orange);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #e55a00;
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
}

.about-text {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.highlight-box {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}

.TICON {
  height: auto;
  width: 80px;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 174, 0, 0.315);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: var(--brand-yellow);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #6b7280;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-dark);
}

/* CTA Section */
.cta-section {
  background: var(--brand-orange);
  color: white;
  padding: 3rem 0;
  text-align: center;
  height: 40vh;
  text-align: center;
  display: flex;
  align-items: center;
}

.cta-section p {
  font-size: 45px;
  margin-bottom: 1rem;
}


.btn-white {
  background: white;
  color: var(--brand-orange);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--brand-footer);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}



.footer-section h3 {
  font-size: 1.25rem;
  /* margin-bottom: 1rem; */
}
.footer-section p{
  margin-top: 10px;

}
.con-name{
  margin-left: 4vw;
}

.footer-section p,
.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  padding-top: 5px;
  background: var(--brand-orange);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #e55a00;
  /* transform: translateY(-2px); */
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.contact-icon {
  color: var(--brand-orange);
  font-size: 1rem;
  min-width: 16px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--brand-orange);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #6b7280;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li:before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.plan-features li:before::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

/* Forms */
.form-container {
  min-height: 100vh;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.contact-form-section .form-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: none;
}

.form-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-submit {
  width: 100%;
  background: var(--brand-orange);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #e55a00;
}

.form-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #6b7280;
}

.form-link a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
}

.form-link a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brand-dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
}

.mobile-menu .nav-link,
.mobile-menu .btn {
  padding: 0.5rem 0;
}

/* About Page */
.about-page {
  padding: 4rem 0;
}

.page-header {
  margin-bottom: 2rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.header-content > div {
  flex: 1;
}

.view-plans-btn {
  white-space: nowrap;
  margin-top: 0.5rem;
}

.contact-page .page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  text-align: left;
}

.contact-page .page-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0;
  text-align: left;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.mission-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.mission-text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.benefits-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  color: #6b7280;
}

.benefits-list li {
  padding: 0.25rem 0;
}

.ceo-section {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.ceo-avatar {
  width: 8rem;
  height: 8rem;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
}

.ceo-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.ceo-title {
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.ceo-description {
  color: #6b7280;
}

.features-section {
  background: var(--brand-cream);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
}

/* Pricing Page */
.pricing-page {
  padding-top:  10vh;
}

.plan-period {
  color: #6b7280;
  margin-bottom: 2rem;
}

.plan-btn {
  width: 100%;
  margin-top: auto;
  background: var(--brand-orange);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.2);
}

.plan-btn:hover {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.3);
}

.calendar-section {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--brand-orange);
  padding: 2rem;
  margin-top: 3rem;
}

.calendar-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.calendar-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  min-height: 400px;
}

.centered-card {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.calendar-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.calendar-grid {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
}

.calendar-info {
  color: #6b7280;
  margin-bottom: 1rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
}

.day-header {
  font-weight: 600;
  color: #374151;
  padding: 0.5rem;
}

.day-btn {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.3s;
}

.day-btn:hover:not(.disabled) {
  background: var(--brand-orange);
  color: white;
}

.day-btn.selected {
  background: var(--brand-orange);
  color: white;
}

.day-btn.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.5;
}

.day-btn.disabled:hover {
  background: #f3f4f6;
  color: #9ca3af;
}

.summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.summary-card {
  background: var(--brand-cream);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-value {
  font-weight: 600;
}

.summary-price {
  font-weight: 600;
  color: var(--brand-orange);
}

.summary-features {
  border-top: 1px solid #d1d5db;
  padding-top: 1rem;
  margin-top: 1rem;
}

.features-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.book-btn {
  width: 100%;
  background: var(--brand-orange);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.2);
}

.book-btn:hover:not(.btn-disabled) {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.3);
}

.btn-disabled {
  background: #d1d5db !important;
  color: #9ca3af !important;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.btn-disabled:hover {
  background: #d1d5db !important;
  color: #9ca3af !important;
  transform: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Time Selection */
.time-selection {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.time-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.time-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  color: #6b7280;
  font-style: italic;
  text-align: center;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-label {
  font-weight: 600;
  color: var(--brand-dark);
  min-width: 4rem;
}

.time-select {
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background: white;
  font-size: 0.875rem;
  cursor: pointer;
}

.time-select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

/* Calendar Navigation */
.calendar-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.nav-btn {
  background: var(--brand-orange);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.nav-btn:hover:not(:disabled) {
  background: #e55a00;
  transform: scale(1.1);
}

.nav-btn:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.month-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: center;
  margin: 0;
}

/* Professional Calendar Styling */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.selection-counter {
  background: var(--brand-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(255, 106, 0, 0.2);
}

.counter-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.calendar-info {
  background: #fef3cd;
  color: #92400e;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  border-left: 4px solid #f59e0b;
}

.day-btn {
  position: relative;
  padding: 0.75rem;
  border: 2px solid transparent;
  background: #f9fafb;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.day-btn:hover:not(.disabled) {
  background: var(--brand-cream);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 106, 0, 0.15);
}

.day-btn.selected {
  background: var(--brand-orange);
  color: white;
  border-color: #e55a00;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
  transform: translateY(-1px);
}

.day-btn.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.5;
  border-color: #e5e7eb;
}

.day-number {
  font-size: 1rem;
  font-weight: 600;
}

.selected-indicator {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-empty {
  min-height: 3rem;
}

.calendar-grid {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

/* Contact Page */
.contact-page {
  padding: 2rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  margin-left: 2rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  background: var(--brand-orange);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
}

.contact-label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-section {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.map-title {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.map-placeholder {
  background: #d1d5db;
  height: 12rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

/* Auth Pages */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-orange);
}

.checkbox-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.forgot-link {
  font-size: 0.875rem;
  color: var(--brand-orange);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}




/* Image Comparison */
.img-comparison-container {
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Testimonial Infinite Scroll */
.testimonial-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.testimonial-scroll-container {
  height: 500px;
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-scroll-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 20s linear infinite;
}

.testimonial-scroll-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem 0;
  min-height: 120px;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
  min-width: 80px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.star-icon {
  color: #10b981;
  font-size: 0.75rem;
}

.testimonial-date {
  font-size: 0.7rem;
  color: #6b7280;
  text-align: center;
}

.testimonial-right {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  flex: 1;
  border-left: 4px solid var(--brand-orange);
}

.testimonial-right::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid white;
}

.testimonial-name {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #4b5563;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  font-size: 0.95rem;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .top-cards {
    grid-template-columns: 1fr;
  }
  
  .card {
    min-height: auto;
  }
  
  .nav-menu,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-icon {
    width: 6rem;
    height: 6rem;
    font-size: 3rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  .about-content,
  .contact-content,
  .calendar-content {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
  }

  /* Testimonial Mobile */
  .testimonial-scroll-container {
    height: 400px;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .testimonial-left {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .testimonial-img {
    width: 50px;
    height: 50px;
  }

  .testimonial-right {
    padding: 1rem;
    border-left: none;
    border-top: 4px solid var(--brand-orange);
  }

  .testimonial-right::before {
    display: none;
  }

  /* Footer Mobile Styles */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    /* margin-bottom: 1.5rem; */
    text-align: center;
    display: flex;
    flex-wrap:wrap ;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 98%;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .social-icons {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .cta-section p {
    font-size: 30px;

  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .contact-info {
    gap: 1rem;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #FF8C33;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e67a2e;
}

/* Navbar Logo Icon */
.logo-icon {
  width: auto;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* Image Comparison Slider Styling */
img-comparison-slider {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: none !important;
  outline: none !important;
}

/* Remove focus outline */
img-comparison-slider:focus {
  outline: none !important;
  border: none !important;
}

/* Inside Images */
img-comparison-slider img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border: none !important;
  outline: none !important;
}

/* Hero Section Animations */
.hero-bg {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.vapor-overlay {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.4) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.TICON {
  width: 80px;
  height: auto;
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 0.8s ease-out 1.2s;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.water-droplet {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.3));
  border-radius: 50%;
  animation: droplet 1.5s ease-out forwards;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  pointer-events: none;
}

@keyframes droplet {
  0% {
    opacity: 1;
    transform: translateY(-20px) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0.3);
  }
}

.car-icon-shimmer {
  animation: shimmer 1s ease-in-out 1.5s, pulse 2s ease-in-out 1.5s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.4) drop-shadow(0 0 25px rgba(255, 106, 0, 0.7));
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Creative floating particles */
.floating-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 182, 10, 0.6);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Sparkle effect */
.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #FFB60A;
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Ripple effect */
.ripple {
  position: absolute;
  border: 2px solid rgba(255, 106, 0, 0.3);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Fallback styles for better compatibility */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-top: 20vh; */
}

.car-icon-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.car-icon-bg {
  background: linear-gradient(180deg, #FFD23F, #FF8C00);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: clamp(80px, 15vh, 150px);
  width: clamp(80px, 15vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.75rem);
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 100%;
  line-height: 1.6;
  padding: 0 0.5rem;
  text-align: center;
  width: 100%;
}

.hero-button {
  display: inline-block;
  background: #FF6A00;
  color: white;
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 9999px;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
  white-space: nowrap;
}

.hero-button:hover {
  background: #FFB60A;
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-button:active {
  transform: scale(0.98);
}

/* Modern Dust-to-Shine Text Animation */
.dust-to-shine-hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.dust-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  color: #663232;
  margin-top: 15vh;
}

.dust-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.dust-letter {
  display: inline-block;
  position: relative;
  opacity: 0;
  animation: dustToShine 2s ease-out forwards;
  color: #1A202C;
}

.dust-letter.mecho-orange {
  color: #FF8C00 !important;
}

@keyframes dustToShine {
  0% {
    opacity: 0;
    transform: translateX(var(--start-x, 0)) translateY(10px) scale(0.8);
    text-shadow: 2px 2px 8px rgba(139, 115, 85, 0.6);
    filter: blur(2px) contrast(0.7);
  }

  30% {
    opacity: 0.7;
    transform: translateX(0) translateY(5px) scale(0.9);
    text-shadow: 1px 1px 6px rgba(160, 132, 92, 0.5);
    filter: blur(1px) contrast(0.8);
  }

  60% {
    opacity: 0.9;
    transform: translateX(0) translateY(0) scale(0.95);
    text-shadow: 0 0 4px rgba(45, 55, 72, 0.3);
    filter: blur(0.5px) contrast(0.9);
  }

  80% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    text-shadow: 0 0 2px rgba(26, 32, 44, 0.2);
    filter: blur(0) contrast(1);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.4),
      0 2px 4px rgba(0, 0, 0, 0.1);
    filter: blur(0) contrast(1.1) brightness(1.05);
  }
}

.dust-letter[style*="#FF8C00"] {
  color: #FF8C00 !important;
}

.dust-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #4F4F4F;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.5s forwards;
}
/* Force DIRTY (first) image to match container height */
img-comparison-slider img[slot="first"] {
  height: 350px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
}
/* Force clean (second) image to match full height */
img-comparison-slider img[slot="second"] {
  height: 350px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
}

.dust-button::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;
}

.dust-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}

.dust-button:hover::before {
  left: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wind effect particles */
.wind-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(139, 115, 85, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: windSweep 1.5s ease-out forwards;
}

@keyframes windSweep {
  0% {
    opacity: 0;
    transform: translateX(-50px) translateY(0) scale(1);
  }

  30% {
    opacity: 0.8;
    transform: translateX(0) translateY(-10px) scale(1.2);
  }

  70% {
    opacity: 0.6;
    transform: translateX(100px) translateY(-20px) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translateX(200px) translateY(-30px) scale(0.3);
  }
}

/* Page Layout Fixes - Navbar Overlap Prevention */
.about-page,
.contact-page,
.pricing-page,
.privacy-page,
.form-container,
.page-container {
  padding-top: 100px;
}

/* Section headings spacing */
.section-title,
.page-title {
  margin-top: 0;

}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {

  .about-page,
  .contact-page,
  .pricing-page,
  .privacy-page,
  .form-container,
  .page-container {
    padding-top: 80px;
  }

  .dust-to-shine-hero {
    min-height: 100vh;
  }

  .dust-hero-content {
    padding: 0.75rem;
    max-width: 95%;
  }

  .dust-title {
    margin-bottom: 1rem;
  }

  .dust-subtitle {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .dust-hero-content {
    padding: 0.5rem;
  }

  .dust-subtitle {
    padding: 0;
  }

  .dust-letter {
    animation-duration: 1.8s;
  }
  
  .footer-section:first-child {
    text-align: center;
  }
  
  .footer-section:first-child .logo-icon {
    margin: 0 auto 1rem;
  }
}
/* Modern Premium Timeline Styles */
.timeline-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.timeline-main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Center Line & Spark Animation */
.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF9900 0%, #FF6A00 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.timeline-spark {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #FFD700 0%, #FF9900 70%, transparent 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 
    0 0 15px #FFD700,
    0 0 30px rgba(255, 215, 0, 0.6),
    0 0 45px rgba(255, 215, 0, 0.3);
  filter: blur(0.5px);
}

/* Timeline Steps */
.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  min-height: 120px;
}

.timeline-step.left {
  justify-content: flex-end;
  padding-right: 60px;
}

.timeline-step.right {
  justify-content: flex-start;
  padding-left: 60px;
}

/* Step Numbers */
.timeline-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF9900 0%, #FF6A00 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  z-index: 10;
  box-shadow: 
    0 8px 25px rgba(255, 106, 0, 0.3),
    0 0 0 4px #FFFFFF,
    0 0 0 8px rgba(255, 153, 0, 0.1);
  text-align: center;
}

/* Content Cards */
.timeline-content {
  background: #ffffff; 
  margin: 0px -2vw ;
  padding: 30px;
  border-radius: 16px;
  width: 320px;
  box-shadow: 
    0 15px 40px rgba(17, 24, 39, 0.06),
    0 6px 20px rgba(17, 24, 39, 0.03);
  border: 1px solid rgba(255, 153, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(17, 24, 39, 0.12),
    0 12px 35px rgba(17, 24, 39, 0.06);
}

.timeline-content.left {
  text-align: right;
}

.timeline-content.right {
  text-align: left;
}

/* Content Arrow */
.timeline-content.left::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid #FFFFFF;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.timeline-content.right::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 12px solid #FFFFFF;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Icons */
.timeline-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FF9900 0%, #FF6A00 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.2);
}

.timeline-content.left .timeline-icon {
  margin-left: auto;
}

.timeline-icon svg {
  font-size: 22px;
  color: #FFFFFF;
}

/* Typography */
.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.timeline-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }
  
  .timeline-main-title {
    font-size: 32px;
    margin-bottom: 60px;
  }
  
  .timeline-center-line {
    left: 30px;
    transform: none;
  }
  
  .timeline-spark {
    left: 30px;
    transform: none;
  }
  
  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 80px;
    margin-bottom: 80px;
  }
  
  .timeline-step.left,
  .timeline-step.right {
    justify-content: flex-start;
    padding: 0 0 0 80px;
  }
  
  .timeline-number {
    left: 30px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .timeline-content {
    max-width: 100%;
    margin-top: 0;
    text-align: left;
  }
  
  .timeline-content.left,
  .timeline-content.right {
    text-align: left;
  }
  
  .timeline-content.left::after,
  .timeline-content.right::after {
    display: none;
  }
  
  .timeline-content.left .timeline-icon {
    margin-left: 0;
  }
  
  .timeline-title {
    font-size: 20px;
  }
  
  .timeline-subtitle {
    font-size: 14px;
  }
}/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  overflow-y: auto;
}

/* About Page Styles */
.about-page-new {
  background: #FFFFFF;
  min-height: 100vh;
  width: 100%;
  overflow: visible;
}

/* Hero About Section */
.hero-about {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  padding: 3rem 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  overflow: visible;
  margin-top: 5vh;
}

.hero-about.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6A00;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #4B5563;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  padding-left: 2rem;
}

/* Image Comparison Slider Container */
.img-comparison-container {
  width: 90%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
}

img-comparison-slider {
  width: 100%;
  height: 100% !important;
  display: block;
  border-radius: inherit;
}

/* Divider styling with enhanced visibility */
img-comparison-slider::part(divider) {
  background: linear-gradient(to bottom, #FF6A00, #FFB60A, #FF6A00);
  box-shadow:
    0 0 30px rgba(255, 106, 0, 1),
    0 0 60px rgba(255, 106, 0, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  width: 6px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}

img-comparison-slider::part(handle) {
  background: linear-gradient(135deg, #FF6A00, #FFB60A);
  border: 4px solid white;
  box-shadow:
    0 0 25px rgba(255, 106, 0, 1),
    0 0 50px rgba(255, 106, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

img-comparison-slider img,
.comparison-img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
  display: block;
}

.img-comparison-container:hover {
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.3);
}

/* Hide any scrollbars inside slider */
img-comparison-slider * {
  overflow: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

img-comparison-slider *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Animations */
.animated-icon {
  animation: float 3s ease-in-out infinite;
}

.circle-animate {
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: drawCircle 2s ease-out forwards;
}

.check-animate {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 1s ease-out 1.5s forwards;
}

/* MECHO Features Section */
.mecho-features {
  padding: 5rem 0;
  background: #FFFFFF;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  overflow: visible;
}

.mecho-features.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #FF6A00;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: visible;
  height: auto;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.1);
  border-color: #FF6A00;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #FFF5E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #FF6A00;
  transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
  fill: #FFFFFF;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FF6A00;
  margin-bottom: 0.5rem;
}

.feature-card span {
  font-size: 0.875rem;
  color: #4B5563;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 5rem 0;
  background: #F9FAFB;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  overflow: visible;
}

.vision-mission.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  overflow: visible;
  height: auto;
}

.vm-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-card:hover {
  border-color: #FF6A00;
}

.mission-card:hover {
  border-color: #FFB60A;
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: #FFF5E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
  background: #FF6A00;
  transform: scale(1.1);
}

.vm-card:hover .vm-icon svg {
  fill: #FFFFFF;
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.vm-card p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Founders Section */
.founders-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.founders-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.founders-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 182, 10, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.founders-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.founders-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founders-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founder-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6A00 0%, #FFB60A 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(255, 106, 0, 0.08);
}

.founder-primary {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.founder-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.founder-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;

}

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00 0%, #FFB60A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 16px 32px rgba(255, 106, 0, 0.2),
    0 8px 16px rgba(255, 106, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}

.founder-card:hover .founder-image {
  transform: scale(1.05);
  box-shadow: 
    0 20px 40px rgba(255, 106, 0, 0.25),
    0 12px 24px rgba(255, 106, 0, 0.15);
}

.founder-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border: 3px solid white;
}

.founder-info {
  text-align: center;
}

.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.125rem;
  color: #FF6A00;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF6A00 0%, #FFB60A 100%);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.founder-bio {
  text-align: left;
  margin-bottom: 2rem;
}

.bio-highlight {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.05) 0%, rgba(255, 182, 10, 0.05) 100%);
  border-left: 4px solid #FF6A00;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.bio-highlight::before {
  content: '"';
  font-size: 3rem;
  color: #FF6A00;
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: serif;
  opacity: 0.3;
}

.founder-bio p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-stats {
  display: flex;
  justify-content: space-around;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FF6A00;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founders-cta {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(26, 32, 44, 0.2);
}

.cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FF6A00 0%, #FFB60A 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
  background: linear-gradient(135deg, #e55a00 0%, #ff9500 100%);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ceo-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .vm-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-about {
    padding: 4rem 0 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-visual {
    justify-content: center;
    padding-left: 0;
  }

  .img-comparison-container {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }

  img-comparison-slider img,
  .comparison-img {
    height: 200px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  img-comparison-slider img[slot="first"] {
    height: 200px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center !important;
       object-position: center !important;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vm-card {
    padding: 2rem;
  }

  .mecho-features,
  .vision-mission,
  .ceo-section-new {
    padding: 3rem 0;
  }

  .ceo-placeholder {
    width: 150px;
    height: 150px;
  }

  .ceo-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .img-comparison-container {
    height: 180px;
  }

  img-comparison-slider img,
  .comparison-img {
    height: 180px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  img-comparison-slider img[slot="first"] {
    height: 180px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center !important;
       object-position: center !important;
  }
}

/* Force both images to match dimensions */
img-comparison-slider img[slot="first"],
img-comparison-slider img[slot="second"] {
  height: 350px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
}

@media (max-width: 768px) {
  img-comparison-slider img[slot="first"],
  img-comparison-slider img[slot="second"] {
    height: 200px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center !important;
       object-position: center !important;
  }
}

@media (max-width: 480px) {
  img-comparison-slider img[slot="first"],
  img-comparison-slider img[slot="second"] {
    height: 180px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center !important;
       object-position: center !important;
  }
  
  .founders-section {
    padding: 2rem 0;
  }
  
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .founder-card {
    padding: 1.5rem 1rem;
  }
  
  .founder-image {
    width: 80px;
    height: 80px;
  }
  
  .founder-name {
    font-size: 1.5rem;
  }
  
  .founder-title {
    font-size: 1rem;
  }
  
  .founders-header {
    margin-bottom: 2.5rem;
  }
  
  .founders-title {
    font-size: 2rem;
  }
  
  .founders-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}/* Pricing Page */
.pricing-page {
  padding-top: 4rem 0;
  padding-bottom: 5vh;
}

.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  /* background-color: #e55a00; */
  margin-bottom: 1rem;
  text-align: center;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--brand-orange);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

.plan-period {
  color: #6b7280;
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #6b7280;
}

.plan-features li:before {
  content: "✓";
  color: var(--brand-orange);
  margin-right: 0.5rem;
}

.plan-btn {
  width: 100%;
  margin-top: auto;
  background: var(--brand-orange);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.2);
}

.plan-btn:hover {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.3);
}

/* Calendar Section */
.calendar-section {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--brand-orange);
  padding: 2rem;
  margin-top: 3rem;
}

.calendar-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.calendar-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.desktop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  grid-template-areas: 
    "calendar time"
    "summary summary";
}

.desktop-layout .calendar-picker {
  grid-area: calendar;
}

.desktop-layout .time-selection {
  grid-area: time;
}

.desktop-layout .plan-summary {
  grid-area: summary;
}

.mobile-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  min-height: 400px;
}

.centered-card {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.calendar-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

/* Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.selection-counter {
  background: var(--brand-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(255, 106, 0, 0.2);
}

.counter-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Calendar Grid */
.calendar-grid {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.calendar-info {
  background: #fef3cd;
  color: #92400e;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  border-left: 4px solid #f59e0b;
}

/* Calendar Navigation */
.calendar-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.nav-btn {
  background: var(--brand-orange);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.nav-btn:hover:not(:disabled) {
  background: #e55a00;
  transform: scale(1.1);
}

.nav-btn:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.month-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: center;
  margin: 0;
}

/* Calendar Days */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
}

.day-header {
  font-weight: 600;
  color: #374151;
  padding: 0.5rem;
}

.day-btn {
  position: relative;
  padding: 0.75rem;
  border: 2px solid transparent;
  background: #f9fafb;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.day-btn:hover:not(.disabled) {
  background: var(--brand-cream);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 106, 0, 0.15);
}

.day-btn.selected {
  background: var(--brand-orange);
  color: white;
  border-color: #e55a00;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
  transform: translateY(-1px);
}

.day-btn.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.5;
  border-color: #e5e7eb;
}

.day-number {
  font-size: 1rem;
  font-weight: 600;
}

.selected-indicator {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-empty {
  min-height: 3rem;
}

/* Time Selection */
.time-selection {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.time-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.time-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  color: #6b7280;
  font-style: italic;
  text-align: center;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-label {
  font-weight: 600;
  color: var(--brand-dark);
  min-width: 4rem;
}

.time-select {
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background: white;
  font-size: 0.875rem;
  cursor: pointer;
}

.time-select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

/* Summary Section */
.summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.summary-card {
  background: var(--brand-cream);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-value {
  font-weight: 600;
}

.summary-price {
  font-weight: 600;
  color: var(--brand-orange);
}

.summary-features {
  border-top: 1px solid #d1d5db;
  padding-top: 1rem;
  margin-top: 1rem;
}

.features-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

/* Book Button */
.book-btn {
  width: 100%;
  background: var(--brand-orange);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.2);
}

.book-btn:hover:not(.btn-disabled) {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.3);
}

.btn-disabled {
  background: #d1d5db !important;
  color: #9ca3af !important;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.btn-disabled:hover {
  background: #d1d5db !important;
  color: #9ca3af !important;
  transform: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Mobile Specific Styles */
.mobile-day {
  min-height: 2.5rem !important;
  padding: 0.5rem !important;
  font-size: 0.875rem;
}

.mobile-time-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.mobile-time-select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

.mobile-book-btn {
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-page {
    padding: 1rem 0.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .calendar-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .calendar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .card {
    padding: 1rem;
    min-height: auto;
  }
  
  .calendar-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .calendar-subtitle {
    font-size: 1rem;
  }
  
  .selection-counter {
    align-self: flex-end;
  }
  
  .calendar-navigation {
    padding: 0;
  }
  
  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  
  .month-title {
    font-size: 1rem;
  }
  
  .calendar-days {
    gap: 0.125rem;
  }
  
  .day-header {
    padding: 0.25rem;
    font-size: 0.75rem;
  }
  
  .day-btn {
    min-height: 2.5rem;
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  .day-number {
    font-size: 0.875rem;
  }
  
  .selected-indicator {
    width: 1rem;
    height: 1rem;
    font-size: 0.625rem;
  }
  
  .time-grid {
    padding: 0.75rem;
  }
  
  .time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .date-label {
    min-width: auto;
    font-size: 0.875rem;
  }
  
  .time-select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .summary-card {
    padding: 0.75rem;
  }
  
  .book-btn {
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .calendar-info {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .desktop-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-page {
    padding: 0.5rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .calendar-section {
    padding: 1rem;
  }
  
  .card {
    padding: 0.75rem;
  }
  
  .calendar-days {
    gap: 0.0625rem;
  }
  
  .day-btn {
    min-height: 2rem;
    padding: 0.25rem;
    font-size: 0.75rem;
  }
  
  .day-number {
    font-size: 0.75rem;
  }
  
  .nav-btn {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
  
  .month-title {
    font-size: 0.875rem;
  }
}/* Contact Page */
.contact-page {
  margin: 5vh;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.contact-page .page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-page .page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0;
  text-align: left;
  line-height: 1.6;
}

.view-plans-btn {
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: white;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.view-plans-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-info {
  padding: clamp(1rem, 2vw, 2rem);
}

.contact-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.contact-icon {
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: white;
  padding: 0.875rem;
  border-radius: 12px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.contact-value {
  color: #6b7280;
  margin-bottom: 0.25rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.5;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

.contact-form-section .form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  border: 1px solid #f3f4f6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #111827;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-input {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1rem);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all 0.3s ease;
  background: #f9fafb;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #FF6A00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
  background: white;
}

.form-input::-moz-placeholder {
  color: #9ca3af;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: white;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: none;
  border-radius: 12px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .contact-page .page-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .contact-info {
    padding: 1rem;
    order: 2;
  }

  .contact-form-section {
    order: 1;
  }

  .contact-item {
    margin-bottom: 1.5rem;
  }

  .view-plans-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 1rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .contact-icon {
    align-self: center;
  }

  .contact-details {
    text-align: center;
  }

  .form-card {
    padding: 1.5rem;
  }

  .header-content {
    text-align: center;
  }

  .contact-page .page-title {
    text-align: center;
  }

  .contact-page .page-subtitle {
    text-align: center;
  }
}.not-found-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
}

.not-found-content {
  text-align: center;
  padding: 0 1rem;
}

.not-found-number {
  font-size: 9rem;
  font-weight: bold;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

.not-found-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.not-found-description {
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.not-found-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-button {
  display: inline-block;
  background-color: #ff6a00;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.home-button:hover {
  background-color: #e55a00;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.nav-link {
  color: #ff6a00;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #e55a00;
}.faq-container {
  min-height: 100vh;
  background: #FFFFFF;
  padding: 100px 1rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 2rem;
  font-weight: 700;
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  border-color: #FF6A00;
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.1);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #FFF5E6;
}

.faq-question h3 {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-icon {
  color: #FF6A00;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #FFFFFF;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}



@media (max-width: 768px) {
  .faq-container {
    padding: 80px 0.5rem 1rem;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  

}.terms-container {
  min-height: 100vh;
  background: #FFFFFF;
  padding-top: 100px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  line-height: 1.7;
}

.terms-title {
  font-size: 2.5rem;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  border-bottom: 3px solid #E5E7EB;
  padding-bottom: 1rem;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.terms-section:last-child {
  border-bottom: none;
}

.section-heading {
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
  border-left: 4px solid #FF6A00;
  padding-left: 1rem;
  position: relative;
}

.section-heading::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF6A00 0%, #FFB60A 100%);
  border-radius: 2px;
}

.terms-section p {
  color: #4B5563;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.terms-section p:last-child {
  margin-bottom: 0;
}



@media (max-width: 768px) {
  .terms-container {
    padding-top: 80px;
  }
  
  .terms-content {
    padding: 2rem 1rem;
  }
  
  .terms-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
  
  .terms-section p {
    text-align: left;
  }
  

}

@media (max-width: 480px) {
  .terms-content {
    padding: 1.5rem 0.75rem;
  }
  
  .terms-title {
    font-size: 1.75rem;
  }
  
  .section-heading {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }
}.privacy-container {
  min-height: 100vh;
  background: #FFFFFF;
  padding-top: 100px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  line-height: 1.7;
}

.privacy-title {
  font-size: 2.5rem;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  border-bottom: 3px solid #E5E7EB;
  padding-bottom: 1rem;
}

.privacy-section {
  background: #FFFFFF;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.privacy-section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.section-heading {
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
  border-left: 4px solid #FF6A00;
  padding-left: 1rem;
  position: relative;
}

.section-heading::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF6A00 0%, #FFB60A 100%);
  border-radius: 2px;
}

.privacy-section p {
  color: #4B5563;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}



@media (max-width: 768px) {
  .privacy-container {
    padding-top: 80px;
  }
  
  .privacy-content {
    padding: 2rem 1rem;
  }
  
  .privacy-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .privacy-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
  
  .privacy-section p {
    text-align: left;
  }
  

}

@media (max-width: 480px) {
  .privacy-content {
    padding: 1.5rem 0.75rem;
  }
  
  .privacy-title {
    font-size: 1.75rem;
  }
  
  .privacy-section {
    padding: 1rem;
  }
  
  .section-heading {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }
}