/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --zinc-400: #a1a1aa;
  --zinc-600: #52525b;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --error: #ef4444;
  --success: #10b981;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.min-h-screen {
  min-height: 100vh;
}

.flex-1 {
  flex: 1;
}

.text-amber-500 {
  color: var(--amber-500);
}

.rounded-full {
  border-radius: 50%;
}

.rounded-image {
  border-radius: 0.5rem;
}

/* Header styles */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-icon {
  color: var(--amber-500);
}

.gear-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--amber-500);
}

.quote-button {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.quote-button:hover {
  background-color: var(--amber-600);
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--amber-500);
}

.mobile-quote-button {
  margin-top: 0.5rem;
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s;
}

.mobile-quote-button:hover {
  background-color: var(--amber-600);
}

/* Hero section */
.hero-section {
  background-color: var(--zinc-900);
  color: var(--white);
  padding: 6rem 0;
}

.hero-content {
  max-width: 48rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--zinc-400);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.primary-button {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  transition: background-color 0.2s;
}

.primary-button:hover {
  background-color: var(--amber-600);
}

.secondary-button {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  transition: background-color 0.2s;
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Section styles */
.services-section,
.about-section,
.equipment-section,
.testimonials-section,
.contact-section,
.booking-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.underline-title {
  position: relative;
}

.underline-title::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: var(--amber-500);
}

.section-subtitle {
  color: var(--zinc-600);
  max-width: 36rem;
  margin: 0 auto;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  text-align: center;
}

.service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--amber-100);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  height: 2rem;
  width: 2rem;
  color: var(--amber-500);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--zinc-600);
}

/* About section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-paragraph {
  color: var(--zinc-600);
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-500);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--zinc-600);
  font-size: 0.875rem;
}

/* Equipment section */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.equipment-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.equipment-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.equipment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem;
}

.equipment-description {
  color: var(--zinc-600);
  margin: 0 1rem 1rem;
}

/* Booking section - Redesigned */
.booking-section {
  background-color: var(--gray-50);
  padding: 5rem 0;
}

.booking-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  color: var(--gray-500);
}

.booking-step.active {
  color: var(--amber-500);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--gray-100);
  border: 2px solid var(--gray-300);
  font-weight: 600;
  font-size: 0.875rem;
}

.booking-step.active .step-number {
  background-color: var(--amber-100);
  border-color: var(--amber-500);
  color: var(--amber-600);
}

.step-label {
  font-weight: 500;
  font-size: 0.875rem;
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-color: var(--gray-300);
  margin: 0 0.5rem;
}

.booking-form {
  padding: 2rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

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

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--zinc-800);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  background-color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.875rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.input-error {
  border-color: var(--error);
}

.custom-select {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.next-button,
.back-button,
.submit-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.next-button,
.submit-button {
  background-color: var(--amber-500);
  color: var(--white);
}

.next-button:hover,
.submit-button:hover {
  background-color: var(--amber-600);
}

.back-button {
  background-color: var(--gray-200);
  color: var(--gray-700);
}

.back-button:hover {
  background-color: var(--gray-300);
}

/* Testimonials section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.quote-icon {
  color: var(--amber-500);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -10px;
  height: 2rem;
  width: 2rem;
}

.testimonial-text {
  color: var(--zinc-600);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-company {
  color: var(--zinc-600);
  font-size: 0.875rem;
}

/* Contact section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: var(--amber-500);
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-text {
  color: var(--zinc-600);
}

.contact-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--amber-600);
}

/* CTA section */
.cta-section {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: var(--white);
  color: var(--amber-500);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: var(--zinc-900);
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer-description {
  color: var(--zinc-400);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--amber-500);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer .contact-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-top: 0.125rem;
}

.footer .contact-item span {
  color: var(--zinc-400);
}

.footer-newsletter-text {
  color: var(--zinc-400);
  margin-bottom: 1rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-input {
  background-color: var(--zinc-800);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  border: none;
  outline: none;
}

.footer-input:focus {
  box-shadow: 0 0 0 2px var(--amber-500);
}

.footer-button {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.footer-button:hover {
  background-color: var(--amber-600);
}

.footer-bottom {
  border-top: 1px solid var(--zinc-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--zinc-400);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
}

.modal-icon {
  margin: 0 auto 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-message {
  color: var(--zinc-600);
  margin-bottom: 1.5rem;
}

.modal-button {
  background-color: var(--amber-500);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-button:hover {
  background-color: var(--amber-600);
}

/* Media queries */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .services-grid,
  .equipment-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step.active {
  animation: fadeIn 0.3s ease-out;
}