body{
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding: 0px;
  margin: 0px;
  color: #222222;
}

a{
  text-decoration: none;
}

.header{
  overflow: hidden;
  padding: 8px 12px;
}

.header .logo{
  width: 300px;
  float: left;
}

.header .logo img{
  width: 280px;
}

.header .nav{
  margin-top: 18px;
  float: right;
  width: 620px;
}

.header .nav li{
  color: #9e9e9e;
  font-size: 20px;
  padding: 0px 16px;
}

.header .nav li:hover{
  color: #1c670d;
  cursor: pointer;
}

.header .res-nav-btn{
  width: 40px;
  float: right;
  display: none;
  margin-right: 12px;
}

.header .res-nav-btn img{
  margin-top: 12px;
  width: 50px;
}

.res-nav-menu{
  background: #fff;
  position: absolute;
  width: 200px;
  height: 100%;
  right: 0px;
  z-index: 999;
  font-size: 20px;
  display: none;
  color: #9e9e9e;
}

.res-nav-menu li{
  list-style: none;
  padding: 16px 24px;
  border-bottom: 1px solid #ccc;
}

.res-nav-menu li:hover{
  color: #1c670d;
  cursor: pointer;
}

.hero{
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../img-files/home-banner.jpg') center/cover no-repeat;
  color:white;
  padding:100px 0 80px;
  position:relative;
  display:flex;
  align-items:center;
  text-align:center;
}

.hero::after{
  content:'';
  position:absolute;
  bottom:-50px;
  left:0;
  width:100%;
  height:100px;
  background:var(--light);
  border-radius:100% 100% 0 0;
}

.btn-accent{
  background:#d68910;
  border:none;
  color:white;
  padding:12px 28px;
  font-weight:600;
}

.btn-accent:hover{
  background:#d68910;
}

.section-2{
  width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.section-2 h2{
  font-weight: bold;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.experience-section {
  padding: 20px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.container h2{
  font-weight: bold;
}

/* Grid Layout */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Design */
.experience-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.experience-card:hover {
  transform: translateY(-8px);
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.experience-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  font-weight: bold;
}

.experience-card p {
  padding: 0 20px;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #d68910;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  color: #fff;
  background: #b06f09;
}

.why-section {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

.travel-guide {
  padding: 20px 20px;
  background: #f4f6f8;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.guide-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.guide-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 70px;
  font-size: 16px;
}

.guide-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.guide-row.reverse {
  flex-direction: row-reverse;
}

.guide-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.guide-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.guide-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.guide-content ul {
  padding-left: 20px;
  color: #555;
}

.guide-content ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .guide-row {
    flex-direction: column;
    text-align: center;
  }

  .guide-row.reverse {
    flex-direction: column;
  }

  .guide-image img {
    max-width: 100%;
  }
}

.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #f59e0b;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

.footer {
  background: #1c670d;
  color: #fff;
  padding: 40px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3{
  font-weight: bold;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
}

.footer-logo {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #103a08;
  font-size: 14px;
}

.rental-section {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.rental-title {
  font-size: 38px;
  margin-bottom: 10px;
}

.rental-subtitle {
  color: #666;
  margin-bottom: 60px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.rental-card {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.rental-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.rental-content {
  padding: 25px;
}

.rental-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rental-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.price {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f59e0b;
  font-size: 16px;
}

.btn-rent {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-rent:hover {
  background: #f59e0b;
  transform: translateY(-3px);
}

@media only screen and (max-width: 500px){
  .header .nav{
    display: none;
  }

  .header .res-nav-btn{
    display: block;
    cursor: pointer;
  }

  .section-2{
    width: 96%;
  }
}