        @font-face {
  font-family: 'Raleway-Medium';
  src: url('../fonts/Raleway-Medium.ttf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Raleway-Bold';
  src: url('../fonts/Raleway-Bold.ttf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-Regular.ttf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Bogart Extrabold';
  src: url('../fonts/Bogart-Extrabold-trial.ttf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Bogart-Regular';
  src: url('../fonts/Bogart-Regular-trial.ttf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Raleway-ExtraLight';
  src: url('../fonts/Raleway-ExtraLight.ttf') format('opentype');
  font-style: normal;
}
    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
     font-family: 'Bogart-Regular';
      width: 100%;
    }
    
    .offer-strip {
  width: 100%;
  background: #594942;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 15px;
  letter-spacing: 0.5px;
  font-family: 'Raleway-Medium';
}

   .hero-wrapper {
  width: 100%;
  min-height: 100vh;
  background: #f6f4dc; /* light cream like reference */
  padding: 0vh 5vw;
  box-sizing: border-box;
}

/* Logo Center */
.hero-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 3vh;
}

.hero-logo img {
  width: 8vw;
  max-width: 120px;
  min-width: 80px;
}

/* Hero Image Container */
.hero-banner {
  width: 100%;
  height: 90vh;
  background: url("../images/image_1.png") center/cover no-repeat;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5vh 5vw;
}

/* Dark Overlay */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Text Content */
.hero-content {
  position: relative;
  max-width: 60%;
  color: white;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2vh;
font-family: 'Bogart Extrabold';
}

.hero-content p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 2vh;
  font-family: 'Raleway-Medium';
}

.hero-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3vh;
  font-family: 'Raleway-Medium';
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
  font-family: 'Raleway-Medium';
  cursor: pointer;
}

/* Yellow Buttons */
.primary,
.secondary {
  background: #f6b800;
  color: black;
}

.btn:hover {
  transform: scale(1.05);
}

.featured-section {
  width: 100%;
  background: #f6f4dc; /* cream background */
  padding: 6vh 0;
  text-align: center;
  overflow: hidden;
}

.featured-title {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 4vh;
  color: #333;
  font-family: 'Raleway-Bold';
}

/* Marquee Wrapper */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track that moves */
.logo-track {
  display: flex;
  align-items: center;
  gap: 5vw;
  width: max-content;
  animation: scrollLoop 18s linear infinite;
}

/* Logos */
.logo-track img {
  width: 10vw;
  max-width: 140px;
  min-width: 80px;
  opacity: 0.35;
  transition: 0.3s ease;
}

/* Hover Effect */
.logo-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Infinite Animation */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.reviews-section {
  width: 100%;
  min-height: 80vh;
  background: #f6f4dc;
  text-align: center;
  padding: 8vh 5vw;
}

/* Heading */
.reviews-heading h2 {
  font-size: clamp(0.7rem, 2vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 2vh;
   font-family: 'Assistant';
}

.reviews-stars {
  font-size: 2rem;
}

.reviews-count {
  font-size: 1.2rem;
  opacity: 0.7;
  font-family: 'Raleway-Medium';
}

.verified-icon {
  color: teal;
  margin-left: 0.5rem;
}

/* Slider */
.reviews-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 7vh;
}

/* Track */
.reviews-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

/* Card */
.review-card {
  flex: 0 0 33.33%;
  padding: 2vh 2vw;
  box-sizing: border-box;
}

.card-stars {
  font-size: 1.8rem;
  margin-bottom: 1vh;
}

.review-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Raleway-Bold';
}

.review-card p {
  font-size: 1.1rem;
  opacity: 0.75;
  font-family: 'Raleway-Medium';
}

.review-name {
  display: block;
  margin-top: 3vh;
  opacity: 0.6;
  font-family: 'Raleway-Medium';
}

/* Buttons */
.review-buttons {
  margin-top: 6vh;
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.arrow-btn {
  font-size: 3rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #0b3b2e;
}

/* SECTION */
.why-goldy-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  padding: 10vh 5vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("images/orange-texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ORANGE OVERLAY */
.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 110, 55, 0.92);
  z-index: 1;
}

/* CONTENT */
.why-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 95%;
}

/* TITLE */
.why-title {
  font-size: 4vw;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8vh;
  letter-spacing: 0.2vw;
    font-family: 'Bogart Extrabold';
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

/* ITEM */
.why-item {
  color: #fff;
}

.why-icon {
  width: 4vw;
  height: 4vw;
  margin: 0 auto 2vh auto;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-item h3 {
  font-size: 1.4vw;
  margin-bottom: 2vh;
  font-weight: 700;
  font-family: 'Bogart-Regular';

}

.why-item p {
  font-size: 1.05vw;
  line-height: 1.8em;
  font-family: 'Raleway-ExtraLight';
}

/* TORN EFFECT */
.torn {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6vh;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}

.torn-top {
  top: 0;
  background-image: url("images/torn-top.png");
}

.torn-bottom {
  bottom: 0;
  background-image: url("images/torn-bottom.png");
}

.site-footer {
  width: 100%;
  min-height: 100vh;
  background: #355a55;
  color: white;
  padding: 8vh 6vw;
  font-family: serif;
}

/* Top Layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 5vw;
  flex-wrap: wrap;
}

/* Left Heading */
.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-left h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Bogart-Regular';
}

.highlight {
  color: white;
  font-weight: 700;
}

.white {
  color: white;
}

.muted {
  color: rgba(255, 255, 255, 0.45);
}

/* Links Columns */
.footer-links {
  flex: 0.4;
  min-width: 200px;
  font-family: 'Bogart-Regular';
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2vh;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1.2vh;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10vh;
  flex-wrap: wrap;
  gap: 4vh;
}

/* Logo */
.footer-logo img {
  width: 7vw;
  min-width: 90px;
}

/* Social Box */
.footer-social {
  background: #f6f4dc;
  padding: 2vh 2vw;
  border-radius: 1rem;
  text-align: center;
  color: black;
  min-width: 200px;
}

.footer-social p {
  font-weight: 600;
  margin-bottom: 1vh;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1vw;
}

.social-icons a {
  font-size: 1.5rem;
  text-decoration: none;
}

/* Disclaimer */
.footer-disclaimer {
  margin-top: 6vh;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 85%;
  font-family: 'Bogart-Regular';
}

/* Divider */
.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 4vh 0;
    font-family: 'Bogart-Regular';
}

/* Copyright */
.footer-copy {
  font-size: 0.9rem;
  opacity: 0.8;
    font-family: 'Bogart-Regular';
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw;
  }

  .why-title {
    font-size: 6vw;
  }

  .why-icon {
    width: 8vw;
    height: 8vw;
  }

  .why-item h3 {
    font-size: 2.5vw;
  }

  .why-item p {
    font-size: 2vw;
  }
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .hero-banner {
 height: 90vh;
        padding: 6vh 4vw;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    width: 80%;
  }
  
  .logo-track img {
    width: 25vw;
  }

  .logo-track {
    gap: 8vw;
    animation-duration: 25s;
  }
  
   .review-card {
    flex: 0 0 100%;
  }
  
   .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 4vh;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }

  .footer-disclaimer {
    max-width: 100%;
    text-align: center;
  }
  
  .reviews-heading h2 {
    font-size: clamp(1.5rem, 2vw, 2.6rem);
}
}

/* Mobile */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .why-title {
    font-size: 8vw;
  }

  .why-icon {
    width: 14vw;
    height: 14vw;
  }

  .why-item h3 {
    font-size: 4.5vw;
  }

  .why-item p {
    font-size: 3.8vw;
  }
}