@font-face {
  font-family: "Mokoto";
  src: url("../fonts/mokoto.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/robotobold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0.5px;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

section {
  padding: 10px 10px;
  min-height: 100vh;
}

h2 {
  font-family: "Mokoto", Arial, sans-serif;
  letter-spacing: 3px;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom-right-radius: 11px;
  border-bottom-left-radius: 11px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  padding: 15px 1px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Mokoto", Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo img {
  height: 37px;
  margin-right: 7px;
}

.logo:hover {
  color: #ff5f1f;
  text-decoration: none;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 1px;
}

header nav ul li a {
  color: #ccc;
  text-decoration: none;
  font-family: "Mokoto", Arial, sans-serif;
  letter-spacing: 1.5px;
  font-size: 1em;
  padding: 10px 10px;
}

/* Active Link */
#nav-links a.active {
  color: #fff;
  border-bottom: 3px solid #ff5f1f;
  border-radius: 11px;
  font-weight: bold;
}

/* Hover Effect */
header nav ul li a:hover {
  color: #fff;
  border-bottom: 3px solid #ff5f1f;
  border-radius: 11px;
}

/* Book now Button in Navbar */
.nav-button {
  background-color: #ff5f1f;
  color: #000;
  font-weight: bolder;
  padding: 7px 11px;
  border: 2px solid #ccc;
  border-radius: 11px;
  transition: 0.3s ease;
}

.nav-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #ff5f1f;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 2em;
  color: #ff5f1f;
  cursor: pointer;
}

/* Main Content */
.main-content {
  padding-top: 90px;
  text-align: center;
}

.slogan {
  font-family: "Mokoto", Arial, sans-serif;
  letter-spacing: 3px;
  font-size: 2.7em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* Background Image Section */
#phi {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/assets/images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  
}

/* Optional: overlay to sharpen button area */
#phi::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Container above blurred image */
.center-call-button {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

/* Call Now Button */
.call-now-button {
  background-color: #ff5f1f;
  color: #000;
  padding: 11px 23px;
  font-family: "Mokoto", Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 1.3em;
  border: 2px solid #000;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease-in-out;
  animation: pulse 2s infinite;
}

.call-now-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #ff5f1f;
}

/* CTA Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
}

/* WhatsApp Chat Floating Button */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.whatsapp-chat {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #25d366;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease;
  animation: pulse1 2s infinite;
}

.whatsapp-chat:hover,
.whatsapp-chat.active {
  transform: scale(1.1);
  background-color: #25d366;
}

.whatsapp-chat img {
  width: 45px;
  height: 45px;
}

/* WhatsApp Pop-up Chat Box */
.whatsapp-popup {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 250px;
  background: #fff;
  border: 4px solid #25d366;
  border-radius: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
}

/* Header */
.whatsapp-header {
  background: #25d366;
  color: white;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 11px;
}

.whatsapp-body {
  padding: 10px;
}

.whatsapp-body p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.whatsapp-body input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 3px;
  margin-bottom: 10px;
}

.whatsapp-body button {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bolder;
}

.whatsapp-body button:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

/* Pulse Animation */
@keyframes pulse1 {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  }
}

/* Services Section */
.services {
  text-align: center;
  background-color: #000;
}

.services h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #fff;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Ensuring the links have no text decoration */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Service Card Styling */
.service-card {
  background-color: #111;
  padding: 10px 10px 30px 10px;
  border-radius: 21px;
  border: 2px solid #ff5f1f;
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
  transform: translateY(15%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Animation trigger class */
.service-card.animate {
  animation: fadeInUp 1s ease-out forwards;
}

/* Hover effect for card */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(255, 95, 31, 0.7);
}

/* Service card heading styling */
.service-card h3 {
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  margin-bottom: 15px;
  font-size: 1.7em;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service card paragraph styling */
.service-card p {
  color: #ddd;
  font-size: 1.1em;
  font-weight: 100;
  line-height: 1.6;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service Icon Styling */
.service-icon {
  width: 100%;
  height: auto;
  margin: 0 0 15px 0;
  object-fit: cover;
  border-radius: 11px;
  transition: transform 0.5s ease, border-radius 0.5s ease;
}

/* Hover effect for the image */
.service-card:hover .service-icon {
  transform: scale(1.05);
  border-radius: 21px;
}

/* Ensure the link hover effect works */
.service-card-link:hover .service-card {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(255, 95, 31, 0.4);
}

/* Insight Section */
.insight {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.insight h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff5f1f;
  margin: 30px;
}

.insight h3 {
  font-size: 1.8em;
  margin: 30px;
  color: #ff5f1f;
}

.insight p {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.insight ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 1000px;
}

.insight ul li {
  font-size: 1.2em;
  line-height: 1.6;
  padding: 10px;
  border-left: 4px solid #ff5f1f;
  margin-bottom: 10px;
  text-align: left;
}

.insight ul li::before {
  content: "✔ ";
  color: #ff5f1f;
  font-weight: bold;
  margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
  padding-top: 50px;
  background-color: #111;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5em;
  margin: 40px;
  color: #fff;
}

/* Testimonials Grid */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #000;
  padding: 25px;
  border-radius: 11px;
  border: 1px solid #ff5f1f;
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

/* Triggered animation */
.testimonial-card.animate {
  animation: fadeIn 1s ease-out forwards;
}

/* Stagger effect */
.testimonial-card.animate:nth-child(1) {
  animation-delay: 0.2s;
}
.testimonial-card.animate:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonial-card.animate:nth-child(3) {
  animation-delay: 0.6s;
}
.testimonial-card.animate:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonial Content */
.testimonial-card p {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
  flex-grow: 1;
}

.testimonial-card cite {
  color: #fff;
  font-size: 1em;
  display: block;
  margin: 10px;
  text-align: center;
  flex-shrink: 0;
}

.stars {
  color: #ff5f1f;
  font-size: 1.5em;
  margin-top: 10px;
  text-align: center;
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: 0 6px 16px rgba(255, 95, 31, 0.4);
}

/* Location Section */
.location {
  padding-top: 50px;
  background-color: #111;
  text-align: center;
}

.location h2 {
  font-size: 2.3em;
  color: #fff;
  margin: 10px;
}

.location p {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.map-container {
  width: 85%;
  margin: 0 auto;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.3);
}

/* General Contact Form Styling */
.contact-form {
  padding: 25px;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/assets/images/sv.jpg");
  background-size: cover;
  background-position: center var(--contact-bg-scroll, center);
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: -11;
  transition: background-position 1s ease-out;
}

/* Styling for form content */

.contact-form h2 {
  font-size: 2.5em;
  margin: 20px;
  color: #fff;
  padding-top: 40px;
}

.contact-form p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #111;
  padding: 30px;
  border-radius: 11px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-size: 1.1em;
  color: #fff;
  text-align: left;
}

/* Input fields */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px;
  font-size: 1em;
  border: 2px solid #ff5f1f;
  border-radius: 11px;
  background-color: #fff;
  color: #000;
}

/* Focused input/select fields */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 3px solid blueviolet;
  outline: none;
  background-color: #fff;
}

/* Button styling */
.contact-form button {
  background-color: #ff5f1f;
  color: #000;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 11px;
  transition: all 0.3s ease;
  border: 3px solid #ff5f1f;
}

/* Button hover effect */
.contact-form button:hover {
  background-color: #fff;
  color: #000;
}

/* Message box for form status (error/success) */
#form-status {
  display: none;
  margin-top: 20px;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 11px;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#form-status.submitting {
  background: #000;
  color: #ff5f1f;
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.5);
}

#form-status.success {
  background: #28a745;
  color: #fff;
}

#form-status.error {
  background: #b30000;
  color: #fff;
}

/* FAQ Section Styling */
.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  flex-direction: column;
  text-align: center;
}

/* FAQ Container */
.faq-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.3em;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
}

/* FAQ Item */
.faq-item {
  background-color: #000;
  border-radius: 11px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.01);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background-color: #111;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 20px;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 11px;
  transition: background 0.3s, border-radius 0.3s;
}

.faq-question:hover {
  background-color: #ff5f1f;
  color: #000;
}

.faq-question.active {
  background-color: #ff5f1f;
  color: #000;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

/* Arrow animation */
.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 20px;
  font-size: 1em;
  color: #fff;
  background-color: #111;
  border-radius: 0 0 11px 11px;
}

.faq-answer.active {
  display: block;
}

/* Footer to Blog Section */
.faq-to-blog {
  margin-top: 50px;
  font-size: 1.1em;
}

.faq-to-blog p {
  color: #fff;
  font-weight: 600;
}

.faq-to-blog a {
  color: #ff5f1f;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.faq-to-blog a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Blog Section Styling */
.blog-section {
  position: relative;
  background-image: url("/assets/images/blog.jpg");
  background-size: cover;
  background-position: center var(--blog-bg-scroll, 0px);
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #000;
  z-index: 0;
  overflow: hidden;
  transition: background-position 0.3s ease;
}

.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

.blog-section h2 {
  font-size: 3em;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

/* Blog Container */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

/* Blog Item */
.blog-item {
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom-right-radius: 21px;
  border-bottom-left-radius: 21px;
  border-top-right-radius: 21px;
  overflow: hidden;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Blog Image */
.blog-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 11px;
}

/* Title Styling */
.blog-item h3 {
  font-size: 1.3em;
  margin: 15px;
  color: #000;
  font-weight: bold;
  text-align: center;
  min-height: 50px;
}

/* Description Styling */
.blog-item p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  flex-grow: 1;
  margin: 10px;
  min-height: 100px;
}

/* Blog Item Hover Effect */
.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Confirmation container */

.confirmation {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  text-align: center;
  border-radius: 11px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

/* Title styling */
.confirmation h2 {
  font-size: 2.3rem;
  color: #ff5f1f;
  margin: 20px;
  font-weight: bold;
}

/* Paragraph styling */
.confirmation p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* List styling */
.confirmation ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.confirmation ul li {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #000;
  line-height: 1.6;
}

/* Links styling */
.confirmation a {
  color: #ff5f1f;
  text-decoration: none;
  font-weight: bold;
}

.confirmation a:hover {
  color: #000;
  text-decoration: underline;
}

/* Background container */
.bgc {
  background-image: url("/assets/images/f1.JPEG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

/* Blur + darken overlay */
.bgc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

/* Footer Section */
footer {
  padding: 20px 0;
  background-color: #111;
  text-align: center;
  color: #fff;
  font-size: 1.1em;
  margin-top: 50px;
  border-top: 2px solid #ff5f1f;
}

footer a {
  color: #ff5f1f;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}
