:root {
  --md-sys-color-primary: #1976d2;
  --md-sys-color-primary-container: #e3f2fd;
  --md-sys-color-secondary: #0288d1;
  --md-sys-color-surface: #ffffff;
  --md-sys-color-surface-variant: #f5f5f5;
  --md-sys-color-on-surface: #1c1b1f;
  --md-sys-color-outline: #79747e;
  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-2: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  --shadow-3: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--md-sys-color-surface-variant);
  color: var(--md-sys-color-on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;

}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--md-sys-color-on-surface);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--md-sys-color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--md-sys-color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  color: var(--md-sys-color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section with Image Carousel */
.hero {
  position: relative;
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  height: 120vh;
  display: flex;
  align-items: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-indicators {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  border-color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  font-size: clamp(1rem, 2.25vw, 1.3rem);
  margin-bottom: 16px;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Call Button */
.call-now-btn {
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.call-now-btn:hover {
  background: #45a049;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  color: white;
}

.call-now-btn .material-symbols-outlined {
  font-size: 18px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: white;
  color: #1976d2;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  border: 2px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-secondary:hover {
  border-color: #ffeb3b;
  color: #ffeb3b;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  background: white;
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  border-radius: 24px 24px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  animation: fadeInUp 0.6s ease-out;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  display: block;
}

.stat-label {
  color: var(--md-sys-color-outline);
  font-weight: 500;
  margin-top: 8px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--md-sys-color-on-surface);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--md-sys-color-outline);
  max-width: 600px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow-1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Service Image Carousel */
.service-image-carousel {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-image.active {
  opacity: 1;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .image-nav {
  opacity: 1;
}

.image-nav-btn {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.image-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.image-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--md-sys-color-primary-container);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 24px;
  color: var(--md-sys-color-primary);
  font-size: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 24px 12px;
  color: var(--md-sys-color-on-surface);
}

.service-card p {
  color: var(--md-sys-color-outline);
  line-height: 1.5;
  margin: 0 24px 24px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--md-sys-color-surface-variant);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--md-sys-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow-2);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Booking Section */
.booking {
  padding: 80px 0;
  background: white;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #49454f;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border: 2px solid #79747e;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background: white;
  color: #1c1b1f;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 1px #1976d2;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #49454f;
}

.form-group input[required]:invalid,
.form-group select[required]:invalid {
  border-color: #d32f2f;
}

.form-group input[required]:valid,
.form-group select[required]:valid {
  border-color: #4caf50;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2349454f' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* Photo Upload Styles */
.form-group input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
}

.file-upload-info {
  border: 2px dashed #79747e;
  border-radius: 8px;
  padding: 0px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: all;
}

.file-upload-info:hover {
  border-color: #1976d2;
  background: #f0f8ff;
}

.file-upload-info .material-symbols-outlined {
  font-size: 32px;
  color: #79747e;
}

.upload-text {
  color: #49454f;
  font-weight: 500;
}

.photo-preview {
  margin-top: 16px;
  position: relative;
  display: inline-block;
  max-width: 200px;
}

.photo-preview img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-photo {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f44336;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.remove-photo:hover {
  background: #d32f2f;
  transform: scale(1.1);
}

.form-group input[type="file"]:focus+.file-upload-info {
  border-color: #1976d2;
  box-shadow: 0 0 0 1px #1976d2;
}

/* Submit Button */
.submit-btn {
  background: #1976d2;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 28px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
}

.submit-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-message {
  background: #4caf50;
  color: white;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.photo-source-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h3 {
  margin: 0 0 20px 0;
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.source-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.source-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #555;
}

.source-btn:hover {
  border-color: #2196F3;
  background-color: #f8f9ff;
  transform: translateY(-1px);
}

.source-btn .material-symbols-outlined {
  font-size: 28px;
  margin-bottom: 6px;
  color: #2196F3;
}

.source-btn span:last-child {
  font-weight: 500;
}

.cancel-btn {
  width: 100%;
  padding: 12px;
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: background-color 0.2s ease;
}

.cancel-btn:hover {
  background: #e0e0e0;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--md-sys-color-primary);
}

.footer-section p,
.footer-section li {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item .material-symbols-outlined {
  color: var(--md-sys-color-primary);
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Brand Logos Section */
.brands {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.brands-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.brands-track {
  display: flex;
  animation: scroll-brands 40s linear infinite;
  width: max-content;
}

.brand-item {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  margin: 0 20px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-item img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.brands-carousel:hover .brands-track {
  animation-play-state: paused;
}

.footer-bottom a {
  color: inherit;
  /* take the same color as the parent text */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {

  .file-upload-info {
    padding: 16px;
    /* Reduce padding on mobile */
    margin: 0;
  }

  .form-group.full-width {
    margin-left: 0;
    margin-right: 0;
  }

  html,
  body {
    overflow-x: hidden;
  }

  nav {
    /* Ensure nav never exceeds viewport */
    width: 100vw;
    left: 0;
    right: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links .call-now-btn {
    margin-top: 10px;
    align-self: center;
  }

  .mobile-menu-button {
    display: block;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 200px 0 160px;
    height: 50vh;
  }

  .stats {
    margin-top: 0px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-container {
    margin: 0 16px;
    padding: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .service-image-carousel {
    height: 350px;
  }

  .brand-item {
    width: 150px;
    height: 100px;
    margin: 0 15px;
  }

  .brand-item img {
    max-width: 100px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 60vh;
  }

  .file-upload-info {
    padding: 12px;
    /* Even less padding on very small screens */
  }

  .service-image-carousel {
    height: 250px;
  }

  .image-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .brand-item {
    width: 120px;
    height: 80px;
    margin: 0 10px;
  }

  .brand-item img {
    max-width: 80px;
    max-height: 40px;
  }

  .modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .source-options {
    flex-direction: column;
  }

  .source-btn {
    flex-direction: row;
    text-align: left;
    padding: 16px;
  }

  .source-btn .material-symbols-outlined {
    margin-bottom: 0;
    margin-right: 12px;
    font-size: 24px;
  }

  .form-group {
  min-width: 0;
  max-width: 100%;
}

  .form-group input,
  .form-group select,
  .form-group textarea {
  min-width: 0;
  width: 100%;
  }

  .booking-container {
  padding: 16px;
  width: calc(100% - 32px);
  }
}

input[type="date"],
input[type="time"] {
  width: 100%;
  box-sizing: border-box;
  appearance: none;        /* removes native styling */
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none;    /* Firefox */
}