* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  color: #222;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #000;
}

.logo img {
  height: 48px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 28px;
  font-size: 14px;
}

.btn-primary {
  background: #f4c400;
  color: #000;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
}

/* HERO */
.hero {
  width: 100%;
  height: 120vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS makes image fill properly */
  display: block;
}


/* ABOUT (BACKGROUND IMAGE) */
.about {
  width: 100%;
  height: 140vh;
  overflow: hidden;
}

.about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Services Section */
.services {
  background: #f7f7f7;
  padding: 100px 60px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header span {
  color: #e50914;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 42px;
  margin-top: 15px;
  line-height: 1.2;
  color: #111;
}

/* Services Grid */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.service-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content a {
  color: #e50914;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services {
    padding: 80px 30px;
  }
}


/* PLANS */
.plans {
  background: #000;
  color: #fff;
  padding: 80px 15%;
  text-align: center;
}

.plans h2 {
  color: #f4c400;
  margin-bottom: 40px;
  font-size: 34px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.plan-card {
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f4c400;
}

.plan-card ul {
  margin-top: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
}

.plan-card.premium {
  border-left: 4px solid #00c2ff;
}

/* CONTACT */
.contact {
  padding: 60px 15%;
  text-align: center;
}

/* ADVANCED FOOTER */
.footer-advanced {
  background: #0e0e0e;
  color: #ccc;
  padding: 70px 8% 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #f4c400;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.social-icons a:hover {
  background: #f4c400;
  color: #000;
}

/* Contact info */
.contact-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #777;
}




/* FAQ Section */
.faq {
  background: #f7f7f7;
  padding: 100px 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header span {
  color: #e50914;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.faq-header h2 {
  font-size: 42px;
  margin-top: 15px;
  line-height: 1.2;
  color: #111;
}

/* FAQ Grid */
.faq-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* FAQ Card */
.faq-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.faq-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.faq-content {
  padding: 25px;
}

.faq-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.faq-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq {
    padding: 80px 30px;
  }
}









/* BOOKING PAGE */
.booking {
  padding: 80px 35%;
  background: #f9f9f9;
}

.booking h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.booking-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
}

.booking-form label {
  display: block;
  margin: 15px 0 6px;
  font-size: 14px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.booking-form button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background: #f4c400;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
