/* General Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  background: #f5f5f5;
  color: #333;
}

/* Section 1 - Hero */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.search-bar {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
}
.search-bar input {
  width: 100%;
  padding: 14px 20px;
  font-size: 18px;
  border-radius: 30px;
  border: none;
  outline: none;
}
.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6600;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

/* Section 2 - Explore States */
.states-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.states-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333;
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.state-box {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  padding: 20px 10px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgb(255 105 180 / 0.4);
  font-weight: 600;
  font-size: 1.1rem;
}
.state-box a {
  text-decoration: none;
  color: #fff;
  display: block;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.state-box a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgb(255 105 180 / 0.7);
}

/* Section 3 - Blogs slider */
.blogs-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
}
.blog-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.blog-card {
  flex: 1 0 300px;
  background: #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}
.blog-card h3 {
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 0.9rem;
}
.blog-controls {
  text-align: center;
  margin-top: 15px;
}
.blog-controls button {
  background: #ff6600;
  border: none;
  padding: 8px 14px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 6px;
  color: white;
}

/* Section 4 - Why we are best */
.why-best {
  max-width: 900px;
  margin: 40px auto;
  background: #fff8e1;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b3b0f;
}

/* Section 5 - Testimonials */
.testimonials {
  max-width: 900px;
  margin: 30px auto 60px;
  padding: 20px;
  background: #e1f7f7;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
}
.testimonial {
  margin-bottom: 20px;
  font-style: italic;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.testimonial strong {
  display: block;
  margin-top: 8px;
  text-align: right;
  font-style: normal;
  font-weight: bold;
}

/* Section 6 - Contact form */
.contact-form {
  max-width: 700px;
  margin: 30px auto 60px;
  padding: 20px;
  background: #f1f7e7;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.contact-form button {
  background: #40a798;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}
.contact-form button:hover {
  background: #2e7560;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero {
    height: 60vh;
    padding-bottom: 30px;
  }
  .blog-card {
    flex: 1 0 90%;
  }
  .states-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .state-box a {
    font-size: 1rem;
    padding: 15px 10px;
  }
}



body { margin:0; background:#242424; font-family: 'Segoe UI', Arial, sans-serif; }
.hero-section {
  max-width: 1160px;
  margin: 0 auto;
  background: #f9f6f2;
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  padding-bottom: 24px;
}
.hero-navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 38px 0 38px;
  background: transparent;
}
.logo-area { display: flex; align-items: center; }
.hero-logo { height:48px; margin-right:13px; }
.logo-text {
  color: #d9531e; font-size:15px; font-weight:500; letter-spacing:0.7px;
}
.hero-menu { display: flex; gap:32px; list-style: none; margin:0; padding:0; }
.hero-menu li a {
  color: #222; font-size: 17px; text-decoration: none; font-weight: 600;
  transition: color 0.2s;
}
.hero-menu li a:hover { color: #16a2ed; }
.hero-signup {
  background: #37b4e8; color: #fff; border-radius: 22px;
  padding: 10px 32px; text-decoration: none; font-weight: bold; font-size:17px;
  transition: background 0.2s;
}
.hero-signup:hover { background: #ffbf00; color:#222; }
.hero-content {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 44px 38px;
}
.hero-left {
  flex:1; max-width:440px; margin-right: 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-left h1 {
  font-size: 38px; font-weight: 800; color: #193d2f; margin-bottom: 15px; line-height: 1.13;
}
.hero-left p {
  color: #646363; font-size: 17px; margin-bottom: 22px;
}
.hero-activities {
  display: flex; gap: 28px; margin-bottom: 26px;
}
.activity-item {
  display: flex; flex-direction: column; align-items: center; font-size: 16px;
  color: #222; background: #ffd400; border-radius: 80px; padding: 13px 17px;
  font-weight: bold; box-shadow: 0 2px #e6ad13;
  transition: background 0.3s;
}
.activity-icon { font-size: 34px; margin-bottom: 6px; color: #333; }
.hero-btn {
  background: #37b4e8; color: #fff; padding: 16px 48px;
  border-radius: 30px; text-decoration: none; font-weight: bold;
  font-size: 20px; margin-top: 10px; box-shadow: 0 2px #147ebd;
}
.hero-btn:hover { background: #ffbf00; color: #222; }
.hero-right {
  display: flex; flex-direction: column; gap: 22px; align-items: flex-end; margin-top: 12px;
}
.hero-img-main {
  width: 226px; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.17);
  transition: transform 0.6s; animation: floatBoat 4s infinite ease-in-out;
}
.hero-img-side {
  width: 186px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transition: transform 0.6s; margin-right: 10px;
}
.hero-decoration {
  position: absolute; bottom: 14px; right: 24px; width: 60px; height: 60px;
  animation: appearChar 2.5s;
}
@keyframes floatBoat {
  0%,100% { transform: translateY(0px);}
  50% { transform: translateY(-16px);}
}
@keyframes appearChar {
  0% { opacity:0; transform: translateY(30px);}
  100% { opacity:1; transform: translateY(0);}
}
/* Responsive */
@media (max-width: 1040px) {
  .hero-content { flex-direction: column; align-items: center; padding:24px 8vw; }
  .hero-left { margin-bottom: 24px; max-width: 95vw; margin-right: 0;}
  .hero-right { flex-direction: row; gap: 18px;}
}
@media (max-width: 720px) {
  .hero-content { padding: 18px 2vw; }
  .hero-navbar { flex-wrap: wrap; padding:16px 2vw 0 2vw;}
  .hero-menu { gap: 16px;}
  .hero-signup{ padding: 8px 15px; font-size:15px;}
  .hero-img-main, .hero-img-side { width: 120px;}
}
