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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand h1 {
  color: #2c5aa0;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2c5aa0;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2c5aa0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 2rem;
  background-image: url("./images/RPA-Travel-Tourism-Automation-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0 */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Bring content above overlay */
  padding: 230px 2rem 2rem 4rem;
  flex: 1;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Search Bar */
.search-container {
  position: relative;
  max-width: 500px;
}

.search-box {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
  color: #333;
}

.search-btn {
  background: #2c5aa0;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #1e3d6f;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background-color: white;
  color: #333;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.search-result-item:hover {
  background-color: #f3f3f3;
}

.result-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* Booking Button */
#booking-btn {
  padding: 12px 30px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: none;
  background-color: #2c5aa0;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#booking-btn:hover {
  background-color: #1e3d6f;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f9fafb;
}

/* Staff Section */
.staff-section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.staff-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.staff-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.staff-image {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #dbeafe;
}

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

.staff-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.staff-position {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 1rem;
}

.staff-contribution {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Company Story */
.company-story {
  margin-top: 3rem;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.story-intro {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

.story-text p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.company-history {
  margin-top: 2rem;
}

.company-history h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.timeline-year {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  color: #6b7280;
  font-size: 0.875rem;
}

.story-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.office-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.office-info {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.office-info h4 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.office-info p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
}

.location svg {
  flex-shrink: 0;
}

.location span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon {
  background: #2563eb;
  color: white;
}

.contact-card h3 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.contact-card a {
  text-decoration: none;
  font-weight: 500;
}

.contact-card a {
  color: #2563eb;
}

.location-card address {
  font-style: normal;
}

.contact-card a:hover {
  opacity: 0.8;
}

/* Contact Form */
.contact-form-container {
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-form-wrapper {
  padding: 2rem;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: none;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1d4ed8;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 1rem 2rem;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .search-input {
    padding: 12px 15px;
  }

  .search-btn {
    padding: 12px 15px;
  }
}
