* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #070716;
  color: #ffffff;
}

/* Fix section position when clicking navbar links */
section {
  scroll-margin-top: 100px;
}

/* Common */
.container {
  max-width: 1200px;
  margin: auto;
}

.section-padding {
  padding: 90px 35px;
}

.section-label {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: bold;
}

.center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Header */
.header {
  width: 100%;
  background: rgba(7, 7, 22, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 16px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.logo h2 {
  color: #d4af37;
  font-size: 26px;
  line-height: 1;
}

.logo span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-btn {
  text-decoration: none;
  color: #070716;
  background: #d4af37;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #ffffff;
}

.menu-icon {
  display: none;
  font-size: 32px;
  color: #d4af37;
  cursor: pointer;
  line-height: 1;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 170px 35px 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070716;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08) translateX(25px);
  animation: heroSmoothSlide 16s infinite ease-in-out;
}

.slide1 {
  background-image: url("../images/hero1.jpg");
  animation-delay: 0s;
}

.slide2 {
  background-image: url("../images/hero2.jpg");
  animation-delay: 4s;
}

.slide3 {
  background-image: url("../images/hero3.jpg");
  animation-delay: 8s;
}

.slide4 {
  background-image: url("../images/hero4.jpg");
  animation-delay: 12s;
}

@keyframes heroSmoothSlide {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(30px);
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1.12) translateX(-30px);
  }

  33% {
    opacity: 0;
    transform: scale(1.12) translateX(-45px);
  }

  100% {
    opacity: 0;
    transform: scale(1.08) translateX(30px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 7, 22, 0.35), rgba(7, 7, 22, 0.78));
  z-index: 1;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.small-heading {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 66px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 19px;
  line-height: 1.7;
  color: #f5e7c4;
  max-width: 700px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust span {
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 8px 14px;
  border-radius: 20px;
  color: #f5e7c4;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  padding: 14px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.gold-btn {
  background: #d4af37;
  color: #070716;
}

.gold-btn:hover {
  background: #ffffff;
}

.outline-btn {
  background: #c79f25;
  color: #070716;
  border: 1px solid #c79f25;
}

.outline-btn:hover {
  background: #ffffff;
  color: #070716;
}

/* About */
.about {
  background: #070716;
}

.about-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  color: #e8e1cf;
  line-height: 1.8;
  font-size: 16px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.about-points div {
  background: #11112b;
  padding: 22px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
}

.about-points h3 {
  color: #d4af37;
  font-size: 30px;
}

.about-card {
  background: linear-gradient(145deg, #39000b, #11112b);
  padding: 38px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.about-card h3 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 22px;
}

.about-card ul {
  list-style: none;
}

.about-card li {
  margin-bottom: 15px;
  color: #f1f1f1;
}

.about-card li::before {
  content: "✓ ";
  color: #d4af37;
  font-weight: bold;
}

/* Services */
.services {
  background: #0c0c22;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #11112b;
  padding: 35px 28px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  color: #dcdcdc;
  line-height: 1.7;
}

/* Gallery */
.gallery {
  background: #070716;
}

.gallery .section-label {
  margin-top: 15px;
}

.gallery .section-title {
  margin-bottom: 30px;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  position: relative;
  z-index: 5;
}

.gallery-tab {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: #d4af37;
  color: #070716;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  height: 330px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #8b0000, #11112b);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: end;
  padding: 24px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
  z-index: 1;
}

.gallery-item span {
  position: relative;
  z-index: 2;
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
}

/* Packages */
.packages {
  background: #0c0c22;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.package-card {
  background: #11112b;
  padding: 35px 28px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.package-card.featured {
  background: linear-gradient(145deg, #39000b, #11112b);
  border-color: #d4af37;
  transform: scale(1.04);
}

.popular-tag {
  position: absolute;
  top: -15px;
  right: 25px;
  background: #d4af37;
  color: #070716;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.package-card h3 {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 8px;
}

.package-subtitle {
  color: #f5e7c4;
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.package-card li {
  margin-bottom: 13px;
  color: #eeeeee;
}

.package-card li::before {
  content: "✓ ";
  color: #d4af37;
}

.package-btn {
  display: inline-block;
  text-decoration: none;
  background: #8b0000;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 30px;
  transition: 0.3s;
}

.package-btn:hover {
  background: #d4af37;
  color: #070716;
}

/* Testimonials */
.testimonials {
  background: #070716;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: linear-gradient(145deg, #11112b, #270008);
  padding: 35px 28px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.quote {
  color: #d4af37;
  font-size: 55px;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #e8e1cf;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.testimonial-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.testimonial-card span {
  color: #d4af37;
  font-size: 14px;
}

/* FAQ */
.faq {
  background: #0c0c22;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #11112b;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 15px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: #d4af37;
  font-size: 24px;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: #e8e1cf;
  line-height: 1.7;
}

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

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Contact */
.contact {
  background: #070716;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.contact-info p {
  color: #e8e1cf;
  line-height: 1.8;
}

.contact-details {
  margin: 25px 0;
}

.contact-details p {
  margin-bottom: 10px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: bold;
}
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.call-btn {
  display: inline-block;
  background: #d4af37;
  color: #070716;
  text-decoration: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.call-btn:hover {
  background: #ffffff;
}

.contact-form {
  background: linear-gradient(145deg, #39000b, #11112b);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #ffffff;
  color: #070716;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #d4af37;
  color: #070716;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffffff;
}

/* Footer */
.footer {
  background: #050510;
  text-align: center;
  padding: 45px 25px 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-logo h2 {
  color: #d4af37;
  font-size: 30px;
}

.footer-logo span {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer p {
  color: #cccccc;
  margin: 15px 0;
}

.footer-links {
  margin: 25px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

/* Original brand colors */
.footer-socials a.facebook {
  color: #1877f2;
}

.footer-socials a.instagram {
  color: #e4405f;
}

.footer-socials a.tiktok {
  color: #000000;
}

.footer-socials a.youtube {
  color: #ff0000;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: #d4af37;
}

.copyright {
  font-size: 14px;
  color: #999999;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.92);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.gallery-modal.active {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  background: #070716;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 22px;
  padding: 35px;
  position: relative;
}

.modal-content h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 28px;
  font-size: 34px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #d4af37;
  color: #070716;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  font-weight: bold;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.modal-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Tablet Responsive */
@media (max-width: 1100px) {
  section {
    scroll-margin-top: 90px;
  }

  .navbar {
    padding: 15px 35px;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #070716;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    display: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero h1 {
    font-size: 52px;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .gallery-item {
    height: 310px;
  }

  .testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
}

}

/* Mobile Responsive */
@media (max-width: 700px) {
  section {
    scroll-margin-top: 78px;
  }

  .navbar {
    padding: 14px 22px;
  }

  .logo h2 {
    font-size: 24px;
    line-height: 1;
  }

  .logo span {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .menu-icon {
    display: block;
    font-size: 34px;
    color: #d4af37;
    cursor: pointer;
    line-height: 1;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 14px;
    left: auto;
    width: 145px;
    background: rgba(7, 7, 22, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    display: none;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    display: block;
    padding: 9px 16px;
    font-size: 12px;
    color: #ffffff;
  }

  .nav-links a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
  }

  .hero {
  min-height: 82vh;
  padding: 105px 18px 35px;
  text-align: center;
  background-position: center center;
  align-items: center;
}

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 22, 0.35);
    z-index: 1;
  }

  .hero-content {
    max-width: 100%;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  .small-heading {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 33px;
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
  }

  .hero-trust {
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-trust span {
    font-size: 11px;
    padding: 6px 10px;
  }

  .section-padding {
    padding: 70px 22px;
  }

  .section-title,
  .about-text h2,
  .contact-info h2 {
    font-size: 32px;
  }

  .about-text p,
  .service-card p,
  .contact-info p {
    font-size: 15px;
  }

  .service-grid,
  .gallery-grid,
  .package-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .gallery .section-label {
    margin-top: 0;
  }

  .gallery-tabs {
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
  }

  .gallery-tab {
    padding: 7px 12px;
    font-size: 11px;
  }

  .gallery-grid {
    gap: 18px;
  }

  .gallery-item {
    height: 320px;
    border-radius: 16px;
    padding: 18px;
  }

  .gallery-item img {
    object-fit: cover;
    object-position: center top;
  }

  .gallery-item span {
    font-size: 18px;
  }

  .package-card {
    padding: 30px 24px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-actions {
  justify-content: center;
}

.whatsapp-btn,
.call-btn {
  width: 100%;
  text-align: center;
}

  .footer-links a {
    display: block;
    margin: 10px 0;
  }

.gallery-modal {
  padding: 18px;
}

.modal-content {
  padding: 28px 18px;
  border-radius: 18px;
}

.modal-content h2 {
  font-size: 26px;
  margin-bottom: 22px;
}

.modal-gallery {
  grid-template-columns: 1fr;
  gap: 15px;
}

.modal-gallery img {
  height: 320px;
}

.testimonial-grid {
  grid-template-columns: 1fr;
}

.testimonial-card {
  padding: 30px 24px;
}

.testimonial-card p {
  font-size: 15px;
}

.footer-socials {
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.hero-slide {
  background-position: center top;
}

}

/* Final polish fixes */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Premium navbar underline hover */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Better desktop hero spacing */
@media (min-width: 1101px) {
  .hero {
    padding: 190px 35px 90px;
  }
}

/* Prevent contact form overflow on real phones */
@media (max-width: 700px) {
  .contact,
  .contact-container,
  .contact-form {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
  }

  .contact-form input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
  }
}

/* Footer contact line if you add it */
.footer-contact {
  color: #e8e1cf;
  font-size: 14px;
  margin-top: 8px;
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: 35px;
}

.gallery-cta p {
  color: #e8e1cf;
  margin-bottom: 15px;
}

.gallery-cta a {
  display: inline-block;
  background: #d4af37;
  color: #070716;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.gallery-cta a:hover {
  background: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  z-index: 1500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

@media (max-width: 700px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 25px;
    right: 18px;
    bottom: 18px;
  }
}

/* Google Map */
.map-section {
  background: #0c0c22;
}

.map-box {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .map-box iframe {
    height: 320px;
  }
}

/* Review Stars */
.stars {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-cta {
  text-align: center;
  margin-top: 35px;
}

.review-cta p {
  color: #e8e1cf;
  margin-bottom: 15px;
}

.review-cta a {
  display: inline-block;
  background: #d4af37;
  color: #070716;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.review-cta a:hover {
  background: #ffffff;
}

.logo img {
  width: 155px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 700px) {
  .logo img {
    width: 125px;
  }
}
