* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* body {
  background: #000;
  color: #fff;
} */

/* TOP BAR */
.top-bar {
  background: #c69c3c;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center;
  color: #fff;
  font-weight: 600;
}
.top-right img {
  width: 15px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: background 0.3s;
  font-family: "Times New Roman", Times, serif;
}

.navbar.scrolled {
  background: #000;
}

.logo {
  font-size: 26px;
  color: #c9a46a;
}

.logo img {
  width: 50px;
}
.time-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  background: #000;
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px;
}

/* BUTTONS */
.btn-outline {
  border: 1px solid #c9a46a;
  padding: 8px 18px;
  border-radius: 20px;
}

.btn-gold {
  background: #c9a46a;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-call {
  border: 1px solid #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.ham-left {
  display: none;
  color: white;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}
.landing {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for better text visibility */
.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.landing h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 2;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .landing {
    height: 40vh;
  }
  .top-bar {
    display: none;
  }
  .navbar {
    justify-content: space-between;
    padding: 40px;
  }
  .ham-left {
    display: block;
  }
  .hero-text img {
    width: 413px;
  }
}

/* HERO */
.hero {
  /* margin-top: 30px; */
  height: 100vh;
  position: relative;
}
.hero img {
  height: 60vh;
  width: 100%;
}
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
/* #c69c3c */
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

/* LEFT TEXT */
.hero-text img {
  font-size: 56px;
  line-height: 1.1;
  width: 350px;
}

.hero-text span {
  color: #c9a46a;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* QUOTE BOX */
.quote-box {
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  width: 532px;
}

.quote-box h3 {
  margin-bottom: 20px;
  color: white;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 10px;
  border: none;
  color: #979797;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #c69c3c;
  border: none;
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}
.hours-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .quote-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
.reviews-section {
  padding: 80px 8%;
  background: #0b0b0b;
  color: #fff;
}

.reviews-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT GOOGLE BOX */
.google-rating {
  background: #111;
  padding: 30px;
  border: 1px solid #c69c3c;
  width: 300px;
  text-align: center;
  margin-top: 70px;
}

.google-rating h3 {
  font-size: 14px;
  color: #c9a46a;
  margin-bottom: 5px;
}

.google-rating h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.rating-score {
  font-size: 48px;
  font-weight: bold;
}

.stars {
  color: #c69c3c;
  font-size: 18px;
  margin: 5px 0;
}

.total-reviews {
  font-size: 14px;
  opacity: 0.8;
}

/* RIGHT SIDE */
.reviews-content {
  flex: 1;
}

/* AI SUMMARY */
.ai-summary {
  background: rgba(201, 164, 106, 0.15);
  border-left: 4px solid #c69c3c;
  padding: 20px;
  margin-bottom: 30px;
}

.ai-summary h4 {
  color: #c69c3c;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  background: #111;
  padding: 20px;
  border-radius: 6px;
}

.testimonial h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial span {
  font-size: 12px;
  color: #c69c3c;
}

.testimonial p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reviews-wrapper {
    flex-direction: column;
  }

  .google-rating {
    width: 100%;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}
.cta-white {
  position: relative;
  padding: 90px 20px;
  text-align: center;
  background: url("./tyson/pricing-background.webp") center/cover no-repeat;
  color: #fff;
}

/* DARK OVERLAY FOR READABILITY */
.cta-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.cta-white h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-white h2 span {
  color: #c69c3c;
}

.cta-white p {
  font-size: 16px;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 35px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-book {
  background: #c69c3c;
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-call {
  background: #000;
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #b8965f;
}

.btn-call:hover {
  background: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-white h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-book,
  .btn-call {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }
}

.split-luxury-section {
  position: relative;
  padding: 90px 0;
  background: #f7f5ef;
  overflow: hidden;
}

/* RIGHT COLOR BLOCK */
.split-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: #c69c3c;
  z-index: 0;
}

/* MAIN CONTAINER */
.split-container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  padding: 0 8%;
}

/* TEXT */
.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.split-text h2 span {
  color: #c69c3c;
}

.split-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.split-text h3 {
  margin-top: 30px;
  font-size: 24px;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #c69c3c;
  text-decoration: none;
}

/* IMAGE GRID */
.split-images {
  display: grid;
  grid-template-columns: 260px 220px;
  gap: 20px;
}

.img-tall img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.img-stack {
  display: grid;
  gap: 20px;
}

.img-stack img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ANIMATION */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .split-bg {
    display: none;
  }

  .split-container {
    flex-direction: column;
  }

  .split-images {
    grid-template-columns: 1fr;
  }

  .img-tall img,
  .img-stack img {
    height: auto;
  }
}

.services-section {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.section-title span {
  color: #c69c3c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 220px;
  text-decoration: none;
  border-radius: 6px;
  border: 5px solid #c69c3c;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #c69c3c;
  opacity: 0;
  transition: 0.4s ease;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card span {
  font-size: 13px;
  color: #c9a46a;
}

/* HOVER */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .overlay {
  opacity: 1;
}

/* SPECIAL CARD */
.overlay.highlight {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}
/* LARGE TABLETS (≤ 1200px) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    height: 210px;
  }
}

/* TABLETS (≤ 992px) */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    height: 220px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }
}

/* MOBILE (≤ 600px) */
/* @media (max-width: 600px) {
  .services-section {
    padding: 60px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 200px;
  }

  .section-title {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card span {
    font-size: 12px;
  }
  .hero-text img {
    width: 413px;
  }
} */

/* SMALL MOBILE (≤ 400px) */
/* @media (max-width: 400px) {
  .service-card {
    height: 180px;
  }

  .overlay {
    padding: 15px;
  }
  .hero-text img {
    width: 413px;
  }
} */

.site-footer {
  background: #fff;
  border-top: 1px solid #c69c3c;
  font-size: 14px;
}

.footer-top {
  padding: 60px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 3fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.7;
  color: #555;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-list li {
  margin-bottom: 8px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* HOVER EFFECT */
.social-icons a:hover img {
  transform: scale(1.15);
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 600px) {
  .social-icons {
    justify-content: center;
  }
}

.memberships img {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
}

.services-list {
  columns: 2;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #000;
  color: #c69c3c;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.footer-bottom a {
  text-decoration: none;
  color: #c69c3c;
}
.cards img {
  height: 26px;
  margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .services-list {
    columns: 1;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.reservation-section {
  background: #f7f7f7;
  padding: 40px 15px;
  font-family: Arial, sans-serif;
}

.reservation-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 25px;
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reservation-header img {
  max-height: 60px;
}

.auth-links a {
  margin-left: 15px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.steps {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  font-size: 14px;
}

.steps span {
  color: #999;
}

.steps .active {
  color: #007bff;
  font-weight: bold;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reservation-form label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
}

.two-col {
  display: flex;
  gap: 15px;
}

.add-stop,
.add-seat {
  display: inline-block;
  margin: 8px 0;
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
}

.counter-box {
  display: flex;
  border: 1px solid #ccc;
  width: 100px;
}

.counter-box button {
  width: 30px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.counter-box span {
  flex: 1;
  text-align: center;
  line-height: 30px;
}

.accessible {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.select-vehicle {
  width: 100%;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  margin-top: 20px;
  cursor: pointer;
}

.reservation-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.privacy {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reservation-content {
    grid-template-columns: 1fr;
  }

  .reservation-map iframe {
    min-height: 300px;
  }
}

.contact-section {
  background: #f8f8f8;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.contact-info p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.contact-info a {
  color: #b89d5c;
  text-decoration: none;
}

.contact-note {
  margin-top: 25px;
  padding: 15px;
  background: #fff;
  border-left: 4px solid #b89d5c;
  font-weight: 500;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b89d5c;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #b89d5c;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #9f8447;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 30px;
  }
}
.about-section {
  padding: 80px 20px;
  background: #ffffff;
  color: #222;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}

.about-heading p {
  font-size: 16px;
  color: #555;
}

/* BLOCK LAYOUT */
.about-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-content h4 {
  font-size: 18px;
  color: #c69c3c;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }

  .about-content h3 {
    text-align: center;
  }

  .about-content h4 {
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }
}
.rates-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.rates-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.rates-container h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 50px;
  color: #111;
}

/* GRID */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* CARD */
.rate-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rate-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #c69c3c;
}

.rate-card p {
  font-size: 16px;
  margin: 6px 0;
  color: #333;
}

.rate-card strong {
  font-size: 22px;
}

.rate-card span {
  font-size: 14px;
  color: #666;
}

/* NOTES */
.rates-notes {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .rates-notes {
    text-align: center;
  }
}
.rates-section-alt {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 90px 20px;
}

.rates-wrapper {
  max-width: 1100px;
  margin: auto;
}

.rates-wrapper h2 {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* TABLE STYLE */
.rates-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.rate-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.rate-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rate-row span {
  font-size: 16px;
}

.rate-row span:nth-child(2),
.rate-row span:nth-child(3) {
  font-weight: 600;
  color: #c69c3c;
}

.rate-row.header {
  background: #c69c3c;
  font-weight: 700;
  text-transform: uppercase;
}

.rate-row.header span {
  color: #fff;
}

/* FOOTER NOTES */
.rates-footer {
  margin-top: 35px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .rate-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rate-row.header {
    display: none;
  }

  .rate-row span {
    font-size: 15px;
  }

  .rate-row span:nth-child(1) {
    font-weight: 600;
  }
}
.we-serve {
  padding: 90px 20px;
  background: #ffffff;
}

.we-serve-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.we-serve-content {
  flex: 1;
}

.we-serve-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 30px;
  color: #111;
}

/* LIST */
.serve-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.serve-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #333;
}

.serve-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c69c3c;
  font-size: 14px;
}

.serve-list .highlight {
  font-weight: 600;
  color: #c69c3c;
}

/* IMAGE */
.we-serve-image {
  flex: 1;
}

.we-serve-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .we-serve-container {
    flex-direction: column;
  }

  .serve-list {
    columns: 1;
  }

  .we-serve-content h2 {
    text-align: center;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  height: 56px;
  width: 56px;
  background: #c69c3c;

  border-radius: 50px;
  display: flex;
  align-items: center;

  padding: 0 14px;
  gap: 10px;

  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;

  transition: width 0.3s ease;
}

/* IMAGE ALWAYS VISIBLE */
.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
}

/* TEXT HIDDEN INITIALLY */
.whatsapp-float span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
}

/* HOVER → EXPAND + SHOW TEXT */
.whatsapp-float:hover {
  width: 200px;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE: ICON ONLY */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
