/* Reset and base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: white;
  line-height: 1.5;
}

/* Recommended state order: L V F H A */
a:link {
  color: #ffff00;
}

a:visited {
  color: #e9e908;
}

a:focus {
  outline: 2px solid #99c2ff;
  outline-offset: 2px;
}

a:hover {
  color: #35f0ff;
}

a:active {
  color: #35f0ff;
  font-weight: 700;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  background-color: #0000FF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
#nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
#nav-links li a,
.submit-ad,
.user-icon {
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.submit-ad {
  background-color: #4caf50;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.submit-ad:hover {
  background-color: #45a049;
}
.user-icon {
  font-size: 1.3rem;
}
.toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Main content padding */
main {
  padding-top: 70px;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

/* Video container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  background-color: black;
  margin-bottom: 30px;
}
.video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 8px;
}

/* Button Section */
.button-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.dropdown {
  position: relative;
}
.dropbtn {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 15px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  min-width: 140px;
  transition: background-color 0.3s ease;
}
.dropbtn:hover {
  background-color: #45a049;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
  z-index: 1100;
  margin-top: 5px;
  left: 0;
}
.dropdown-content.show {
  display: block;
}
.dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #444;
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background-color: #4caf50;
}

/* Content Box */
.content-box {
  background-color: #222;
  color: #eee;
  border: 2px solid #555;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* Gallery Section */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 10px;
}
.gallery-card {
  background-color: #222;
  border-radius: 12px;
  width: calc(33.333% - 25px);
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  padding: 15px;
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Layout: center the action row */
.gallery-card .card-header {
  margin-top: 12px;
}

.gallery-card .card-buttons {
  display: flex;
  justify-content: center;       /* center horizontally */
  align-items: center;
  gap: 12px;                      /* space between buttons */
  flex-wrap: wrap;                /* wrap on small screens */
}

/* Button base */
.gallery-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;          /* pill shape */
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}

/* Icons inside buttons */
.gallery-card .btn .btn-icon {
  font-size: 16px;
  line-height: 0;
  display: inline-flex;
}

/* Specific styles */
.gallery-card .call-btn {
  background: #0d6efd;           /* primary blue */
}
.gallery-card .call-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.gallery-card .whatsapp-btn {
  background: #25d366;           /* WhatsApp green */
}
.gallery-card .whatsapp-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Optional: make the action row feel centered with the rest */
.gallery-card {
  text-align: center;
}

.verified-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.card-buttons {
  display: flex;
  gap: 10px;
}
.card-buttons a {
  background-color: #4caf50;
  color: white;
  font-size: 18px;
  border-radius: 6px;
  padding: 6px 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.card-buttons a:hover {
  background-color: #388e3c;
}
.person-image {
  width: 100%;
  max-width: 326px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
}
.card-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  min-height: 50px;
}
.card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.rate {
  font-size: 1.1rem;
  font-weight: 600;
}
.stars {
  color: gold;
  font-size: 1.2rem;
}

/* Multi-heading content box */
.multi-heading-box {
  background-color: black;
  border: 2px solid #555;
  border-radius: 8px;
  max-width: 700px;
  margin: 40px auto;
  padding: 30px 20px;
  color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  font-family: Arial, sans-serif;
}
.heading-block {
  margin-bottom: 30px;
  text-align: left;
}
.multi-heading-box h2 {
  margin-bottom: 12px;
  font-weight: 700;
}
.multi-heading-box .heading1 { color: #fff200; font-size: 1.8rem; text-transform: uppercase; letter-spacing: 1.2px; }
.multi-heading-box .heading2 { color: #fff200; font-size: 1.7rem; font-style: italic; }
.multi-heading-box .heading3 { color: #fff200; font-size: 1.6rem; font-weight: 600; }
.multi-heading-box .heading4 { color: #fff200; font-size: 1.5rem; text-decoration: underline; }
.multi-heading-box .heading5 { color: #fff200; font-size: 1.45rem; font-weight: 500; font-family: 'Courier New', Courier, monospace; }
.multi-heading-box .heading6 { color: #fff200; font-size: 1.4rem; font-style: oblique; }
.multi-heading-box p { color: #ddd; font-size: 1rem; line-height: 1.5; max-width: 650px; }

/* Table styles */
.table-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  color: white;
  font-family: Arial, sans-serif;
}
.table-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff200;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.styled-table thead {
  background-color: #a60a0a;
  color: white;
  font-weight: 600;
}
.styled-table th,
.styled-table td {
  padding: 12px 15px;
  border: 1px solid #fff;
  text-align: left;
  word-wrap: break-word;
}
.styled-table tbody tr:hover {
  background-color: #333;
}

/* FAQ Section */
.faq-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 15px;
  color: white;
  font-family: Arial, sans-serif;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #4caf50;
  font-size: 1.8rem;
  font-weight: 700;
}
.faq {
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color:black;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 15px 5px;
  text-align: left;
  position: relative;
  transition: color 0.3s ease;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 10px 15px 10px;
  color:black;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-answer p {
  margin: 0;
}

/* Location Section */
.location-section {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  padding: 0 15px;
}
.location-section h2 {
  color: #4caf50;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.location-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.location-buttons button {
  background-color: #a60a0a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.location-buttons button:hover {
  background-color: #4caf50;
}

/* Footer */
footer {
  background-color: #111;
  color: #bbb;
  padding: 20px 15px;
  text-align: center;
  font-size: 0.9rem;
}
.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 8px;
  padding: 0;
}
.footer-menu ul li a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
}
.footer-menu ul li a:hover {
  color: #4caf50;
}

/* Floating buttons */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100;
}
.floating-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4caf50;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.floating-contact a:hover {
  background-color: #388e3c;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-card {
    width: calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  #nav-links {
    position: absolute;
    top: 60px; right: 0;
    background-color: #a60a0a;
    flex-direction: column;
    width: 220px;
    border-radius: 0 0 0 8px;
    box-shadow: -3px 4px 12px rgba(0,0,0,0.7);
    display: none;
  }
  #nav-links.show {
    display: flex;
  }
  #nav-links > li {
    margin: 10px 0;
    text-align: center;
  }
  .toggle {
    display: block;
  }
  main {
    padding-top: 90px;
  }
  .button-section {
    flex-direction: column;
    align-items: center;
  }
  .dropbtn {
    width: 80%;
    max-width: 300px;
    min-width: auto;
  }
  .gallery-card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
  .location-buttons {
    gap: 10px;
  }
  .location-buttons button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  footer {
    font-size: 0.8rem;
  }
  .footer-menu ul {
    gap: 15px;
  }

  .multi-heading-box {
    padding: 20px 15px;
    max-width: 90%;
  }
  .heading-block {
    margin-bottom: 22px;
  }
  .multi-heading-box h2 {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
  .multi-heading-box .heading1 { font-size: 1.5rem; }
  .multi-heading-box .heading2 { font-size: 1.4rem; }
  .multi-heading-box .heading3 { font-size: 1.35rem; }
  .multi-heading-box .heading4 { font-size: 1.3rem; }
  .multi-heading-box .heading5 { font-size: 1.25rem; }
  .multi-heading-box .heading6 { font-size: 1.2rem; }
  .multi-heading-box p {
    font-size: 0.95rem;
  }
}

/* Floating buttons base styling */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000; /* Ensure on top */
}

.float-btn {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* Different bg colors for call button */
.float-btn.call {
  background-color: #007bff;
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 45px;
  }
}

