body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #000;
}
/* Global overflow fix */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.navbar {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 28px 24px 28px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
}
.logo {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 1.25rem;
  text-decoration: none;
  color: #000;
  position: relative;
  font-weight: 400;
  transition: color 0.2s;
}
.arrow {
  display: inline-block;
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-link:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
.hamburger {
  width: 36px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  background: #ff97a1;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 160px 28px 0 28px;
  box-sizing: border-box;
  animation: heroBg 12s ease-in-out infinite;
  position: relative;
}
@keyframes heroBg {
  0% { background: #ff8da5; }
  25% { background: #ffb8ac; }
  50% { background: #ffb8b8; }
  75% { background: #ff8f8b; }
  100% { background: #ff8da5; }
}
.hero h1 {
  font-size: 7vw;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 40px 0;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.cookie-box {
  background: #fff;
  padding: 24px 24px 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  max-width: 420px;
  margin-top: 24px;
}
.cookie-box strong {
  font-size: 1.1rem;
  font-weight: 700;
}
.cookie-box p {
  font-size: 1rem;
  margin: 12px 0 18px 0;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-actions button {
  padding: 10px 18px;
  border: 2px solid #000;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.cookie-actions .accept {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}
.cookie-actions .accept:hover {
  background: #222;
}
.cookie-actions .reject:hover,
.cookie-actions .customize:hover {
  background: #f2f2f2;
}

.modal-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
.modal-menu.active {
  display: flex;
}
.modal-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 2.5rem;
  cursor: pointer;
  font-weight: 300;
}
.modal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.modal-link {
  font-size: 6vw;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.modal-arrow {
  display: inline-block;
  margin-left: 12px;
  font-size: 2.8vw;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.2s, transform 0.2s;
  vertical-align: middle;
}
.modal-link:hover .modal-arrow {
  opacity: 1;
  transform: translateX(0);
}
.modal-actions {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
  margin-top: 32px;
}
.quote-btn, .touch-btn {
  width: 40vw;
  max-width: 500px;
  padding: 24px 0;
  font-size: 1.2rem;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
  border-radius: 0;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.quote-btn:hover, .touch-btn:hover {
  background: #000;
  color: #fff;
}

.scroll-arrow {
  position: absolute;
  left: 95%;
  transform: translateX(-50%);
  bottom: 760px;
  font-size: 2.5rem;
  color: #000;
  cursor: pointer;
  margin: 0 0 24px 0;
  transition: transform 0.2s, color 0.2s;
  z-index: 3;
  background: none;
  border: none;
  outline: none;
}
.scroll-arrow:hover {
  color: #ff8da5;
  transform: translateX(-50%) translateY(6px) scale(1.15);
}
.hero-video-wrapper {
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  margin-top: 48px;
  border-radius: 0;
}
.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #000;
  border-radius: 0;
}

.about-section {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 2vw 0 2vw;
  box-sizing: border-box;
  background: #fff;
}
.about-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 1.08;
  color: #000;
  margin: 0;
  text-align: left;
}

.results-section {
  max-width: 100%;
  overflow-x: hidden;
}
/* .results-section {
  width: 100vw;
  background: #fafafa;
  padding: 40px 0 0 0;
  box-sizing: border-box;
} */
.results-title {
  font-size: 6vw;
  font-weight: 400;
  margin: 0 0 12px 28px;
  letter-spacing: 2px;
  font-family: 'Inter', Arial, sans-serif;
}
.results-divider {
  border: none;
  border-top: 3px solid #111;
  margin: 0 28px 32px 28px;
}
.results-featured {
  width: 96vw;
  max-width: 97vw;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: none;
}
.results-featured-media {
  width: 100%;
  background: #92d6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
}
.results-featured-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
}
.results-featured-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 0 8px 0 0;
}
.results-featured-label {
  font-size: 2vw;
  font-weight: 400;
  margin-left: 0;
  font-family: 'Inter', Arial, sans-serif;
}
.results-featured-pill {
  font-size: 1vw;
  font-weight: 400;
  border: 2px solid #111;
  border-radius: 20px;
  padding: 6px 18px;
  margin-right: 18px;
  background: #fff;
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
}
.results-row {
  width: 96vw;
  max-width: 97vw;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  justify-content: center;
}
.results-item {
  flex: 1 1 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0;
  overflow: hidden;
}
.results-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  background: #eee;
}
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  padding: 0 18px 0 0;
}
.results-label {
  font-size: 1.3vw;
  font-weight: 400;
  font-family: 'Inter', Arial, sans-serif;
  margin-left: 0;
}
.results-pill {
  font-size: 1vw;
  font-weight: 400;
  border: 2px solid #111;
  border-radius: 20px;
  padding: 6px 18px;
  background: #fff;
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
}
/* .results-featured-media video,
.results-item video,
.results-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #eee;
  border-radius: 0;
} */

.results-featured-media video,
.results-item video,
.hero-video {
  max-width: 100% !important;
  width: 100% !important;
  height: auto;
  object-fit: cover;
}
.results-item video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  background: #eee;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 2vw;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero h1 {
    font-size: 8vw;
  }
  .about-section .about-text {
    font-size: 5vw;
    padding: 0 2vw;
  }
  .results-title {
    font-size: 6vw;
  }
  .results-featured-info, .results-info {
    font-size: 3vw;
  }
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 2vw;
  }
  .service-title, .service-subtitle, .service-desc {
    font-size: 4vw;
  }
  .marquee-content img {
    height: 40px;
    margin: 0 16px;
  }
  .method-title {
    font-size: 9vw;
  }
  .method-text {
    font-size: 4vw;
    max-width: 90vw;
  }
  .about-btn {
    font-size: 3vw;
    padding: 8px 18px;
  }
  .loop-marquee-content {
    font-size: 7vw;
  }
  /* Footer responsiveness */
  .footer-inner {
    padding: 20px 2vw 0 2vw;
  }
  .footer-top {
    gap: 18px;
  }
  .footer-locations {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }
  .footer-btn {
    font-size: 3vw;
    padding: 8px 18px;
    margin-bottom: 0;
  }
  .footer-main-row {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: flex-start;
  }
  .footer-contact {
    font-size: 6vw;
    min-width: 0;
    width: 100%;
  }
  .footer-services, .footer-social {
    font-size: 4vw;
    min-width: 0;
    width: 100%;
  }
  .footer-logo-row {
    padding: 20px 0 20px 0;
  }
  .footer-logo {
    font-size: 13vw;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    font-size: 3vw;
    padding: 12px 2vw 8px 2vw;
    gap: 8px;
  }
  .footer-policy a {
    font-size: 3vw;
    margin-left: 0;
    margin-right: 18px;
  }
}

/* Extra small screens */
@media (max-width: 600px) {
  .footer-logo {
    font-size: 18vw;
  }
  .footer-contact {
    font-size: 8vw;
  }
  .footer-services, .footer-social {
    font-size: 6vw;
  }
  .footer-btn {
    font-size: 4vw;
  }
  .footer-bottom-bar {
    font-size: 4vw;
  }
}

.services-section {
  width: 100vw;
  background: #fafafa;
  padding: 0 0 40px 0;
  box-sizing: border-box;
}
.service-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 2vw 40px 2vw;
  width: 100%;
  box-sizing: border-box;
}
.service-title {
  flex: 2;
  font-size: 5vw;
  font-weight: 400;
  font-family: 'Inter', Arial, sans-serif;
  text-align: left;
}
.service-subtitle {
  flex: 1;
  font-size: 1.5vw;
  font-weight: 400;
  font-family: 'Inter', Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-top: 18px;
}
.service-desc {
  flex: 2;
  font-size: 1.5vw;
  font-weight: 400;
  font-family: 'Inter', Arial, sans-serif;
  text-align: left;
  margin-top: 18px;
}
.service-divider {
  border: none;
  border-top: 3px solid #111;
  margin: 0 2vw;
}
@media (max-width: 900px) {
  .service-row {
    flex-direction: column;
    padding: 32px 2vw 32px 2vw;
  }
  .service-title {
    font-size: 10vw;
    text-align: left;
  }
  .service-subtitle {
    font-size: 3vw;
    text-align: left;
    margin-top: 12px;
  }
  .service-desc {
    font-size: 3vw;
    text-align: left;
    margin-top: 12px;
  }
  .service-divider {
    margin: 0 2vw;
  }
}

.marquee-section {
  width: 100vw;
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 20s linear infinite;
}

.marquee-content img {
  height: 100px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

.marquee-content img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.method-section {
  width: 100vw;
  padding: 60px 0 80px 0;
  background: #fff;
}

.method-title {
  font-size: 6vw;
  font-weight: 400;
  margin: 0 0 0 2vw;
  letter-spacing: 1px;
  font-family: 'Inter', Arial, sans-serif;
}

.method-divider {
  border: none;
  border-top: 2px solid #111;
  margin: 0 2vw 40px 2vw;
}

.method-content {
  display: flex;
  align-items: flex-start;
  /* justify-content: flex-start; */
  gap: 3vw;
  margin-left: 2vw;
  margin-top: 30px;
}

.about-btn {
  padding: 8px 22px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  font-size: 1.1vw;
  border-radius: 20px;
  font-family: 'Inter', Arial, sans-serif;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}

.about-btn:hover {
  background: #111;
  color: #fff;
}

.method-text {
  font-size: 2.5vw;
  max-width: 50vw;
  line-height: 1.15;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 0 4vw;
}
@media (max-width: 900px) {
  .method-title { font-size: 9vw; }
  .method-text { font-size: 4vw; max-width: 80vw; }
  .about-btn { font-size: 2vw; }
  .method-content { flex-direction: column; gap: 2vw; }
}

.loop-marquee-section {
  width: 100vw;
  overflow: hidden;
  background: #fff;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  margin: 0;
  padding: 0;
}

.loop-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 8vw;
  align-items: center;
}

.loop-marquee-content {
  display: flex;
  align-items: center;
  font-size: 5vw;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  white-space: nowrap;
  animation: loop-marquee 20s linear infinite;
  letter-spacing: 2px;
}

@keyframes loop-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-reveal {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 40px;
  margin: 0 auto;
  max-width: 1200px; /* Reduced from full width */
  width: 90%; /* Responsive width */
}

.footer-inner {
  max-width: 100%;
  margin: 0 auto;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-locations {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-btn {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.footer-btn:hover {
  border-color: #fff;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-contact .footer-email {
  font-size: 18px;
  font-weight: 600;
}

.footer-contact .footer-phone {
  font-size: 16px;
  color: #ccc;
}

.footer-services {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ccc;
}

.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 30px 0;
}

.footer-logo-row {
  text-align: center;
  margin: 30px 0;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-policy {
  display: flex;
  gap: 20px;
}

.footer-policy a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-reveal {
    width: 95%;
    padding: 40px 15px 30px;
  }
  
  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-locations {
    justify-content: center;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-policy {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-reveal {
    width: 100%;
    padding: 30px 10px 20px;
  }
  
  .footer-locations {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-btn {
    width: 200px;
  }
  
  .footer-contact .footer-email {
    font-size: 16px;
  }
  
  .footer-logo {
    font-size: 20px;
  }
}
