* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Roboto, Arial, sans-serif;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background: #fff;
  color: #222;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

header img.logo {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}

.header-menu a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: color 0.3s ease;
}

.header-menu a:hover {
  color: #00b26a;
}

.cart-right {
  margin-left: 20px;
  height: 35px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-right:hover {
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  cursor: pointer;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #111;
}

.mobile-header-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: rgba(255,255,255,0.96);
  flex-direction: column;
  padding: 60px 20px;
  gap: 22px;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 2000;
}

.mobile-header-menu.show {
  display: flex;
  right: 0;
}

.mobile-header-menu a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('nyc.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: heroEntrance 2s ease forwards;
  padding: 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
  max-width: 1100px;
}

@keyframes heroEntrance {
  0% { transform: translateY(-100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  animation: fadeIn 1.5s 1s forwards;
  opacity: 0;
}

.hero nav {
  margin-top: 20px;
  display: flex;
  gap: 40px;
  font-size: 2rem;
  opacity: 0;
  animation: fadeIn 1.5s 1.5s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

.hero nav a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 8px;
  transition: 0.3s;
}

.hero nav a:hover {
  background: white;
  color: #333;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero .quick-fixes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  animation: fadeIn 1s 2.5s forwards;
  opacity: 0;
}

.hero .quick-fixes h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero .quick-fixes select {
  width: 300px;
  max-width: 80%;
  padding: 12px 15px;
  font-size: 1.2rem;
  border-radius: 10px;
  border: 2px solid white;
  margin-bottom: 15px;
  background: white;
  color: #333;
  cursor: pointer;
}

.hero .quick-fixes button {
  padding: 12px 25px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background: #00d084;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero .quick-fixes button:hover {
  background: #00b26a;
}

section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
}

.services {
  padding: 80px 20px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.service-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 320px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
  flex-shrink: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.service-card img {
  width: 80px;
  margin: 0 auto 20px;
}

.portfolio {
  padding: 80px 20px;
  text-align: center;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.portfolio-gallery img:hover {
  transform: scale(1.05);
}

.get-it-right-team {
  background: #ffffff;
  padding: 80px 20px 90px;
}

.location-tool-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.location-search-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.location-search-head h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.location-search-head p {
  color: #666;
  margin-bottom: 18px;
  line-height: 1.5;
}

.location-search-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.location-search-row input {
  flex: 1 1 260px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  font-size: 1rem;
}

.location-search-row button {
  padding: 14px 22px;
  border: none;
  border-radius: 12px;
  background: #00d084;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.location-search-row button:hover {
  background: #00b26a;
}

.location-map-box {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
}

.location-map-box iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.team-card {
  position: relative;
  overflow: hidden;
  width: 320px;
  max-width: 100%;
}

.team-card .team-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 4px solid #f0f0f0;
}

.team-role {
  color: #00b26a;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-gallery-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 2px 12px;
  margin: 14px 0 18px;
  scroll-snap-type: x mandatory;
}

.tech-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.tech-gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 20px;
}

.tech-shot {
  min-width: 96px;
  width: 96px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.team-badge {
  background: #f2f2f2;
  color: #333;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.team-book-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  background: #00d084;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.team-book-btn:hover {
  background: #00b26a;
  transform: translateY(-2px);
}

.purchase-timeline-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 70px 20px 80px;
}

.timeline-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.timeline-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.timeline-step {
  background: #fff;
  border-radius: 18px;
  padding: 26px 18px;
  width: 230px;
  min-height: 230px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.timeline-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #222;
}

.timeline-step p {
  color: #666;
  line-height: 1.55;
  font-size: 0.97rem;
}

.timeline-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #00d084;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 208, 132, 0.25);
}

.timeline-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00d084, #00b26a);
  border-radius: 50px;
}

.timeline-step.highlight {
  border: 2px solid rgba(0, 208, 132, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #f0fff8 100%);
}

.timeline-circle.gift {
  background: #f5b700;
  box-shadow: 0 8px 18px rgba(245, 183, 0, 0.25);
}

.timeline-fineprint {
  margin-top: 24px;
  font-size: 0.86rem;
  color: #777;
  letter-spacing: 0.2px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}

.booking-modal.active {
  display: block;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.booking-card {
  position: relative;
  width: calc(100% - 30px);
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 2;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.booking-head h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.booking-head p {
  color: #666;
  font-size: 0.98rem;
}

.booking-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #222;
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-size: 1rem;
}

#bookingForm textarea {
  resize: vertical;
  min-height: 130px;
}

.booking-submit-btn {
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #00d084;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.booking-submit-btn:hover {
  background: #00b26a;
}

.booking-status {
  text-align: center;
  font-weight: 600;
  margin-top: 6px;
  min-height: 24px;
}

.contact {
  padding: 80px 20px;
  background: #333;
  color: white;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.contact button {
  padding: 15px;
  border: none;
  background: #00d084;
  color: white;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #00b26a;
}

footer {
  padding: 40px 20px;
  background: #222;
  color: white;
  text-align: center;
}

footer a {
  color: #00d084;
  text-decoration: none;
}

@media (max-width: 992px) {
  .timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-menu,
  .cart-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero nav {
    flex-direction: column;
    gap: 15px;
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 2.4rem;
  }

  .hero .quick-fixes h2 {
    font-size: 2rem;
  }

  .service-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    margin: 25px auto;
    padding: 20px;
  }

  .timeline-step {
    width: 100%;
    max-width: 340px;
    min-height: auto;
  }

  .location-search-row {
    flex-direction: column;
  }

  .location-search-row button,
  .location-search-row input {
    width: 100%;
  }
}
/* TECH CARD COLOR UPGRADE */
.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2fff8 100%);
  border: 1px solid rgba(0, 208, 132, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00d084, #00b26a, #f5b700);
}

.team-card:hover {
  background: linear-gradient(180deg, #ffffff 0%, #eafff4 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.20);
}

.team-card .team-role {
  color: #0f9f62;
}

.team-card .team-badge {
  background: linear-gradient(180deg, #f4fff9 0%, #e8fff2 100%);
  color: #166534;
  border: 1px solid rgba(0, 176, 106, 0.14);
}

.team-card .tech-gallery-scroll {
  background: linear-gradient(180deg, #f8fffb 0%, #eefcf4 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 208, 132, 0.12);
  padding: 12px 8px 14px;
}
@media (max-width: 768px) {
  .location-search-card {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .location-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 208, 132, 0.14);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .location-search-row input {
    border: 0;
    outline: none;
    background: transparent;
    padding: 10px 14px;
    width: 100%;
  }

  .location-search-row button {
    width: auto;
    border-radius: 999px;
    padding: 11px 16px;
    white-space: nowrap;
  }
}
.see-more-link {
  display: inline-block;
  margin: 4px 0 12px;
  padding: 0;
  border: none;
  background: transparent;
  color: #0f9f62;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.see-more-link:hover {
  color: #0b7c4d;
}

.link-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 7000;
}

.link-modal.active {
  display: block;
}

.link-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.link-modal-card {
  position: relative;
  width: calc(100% - 30px);
  max-width: 360px;
  margin: 110px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.link-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: #222;
}

.link-modal-card h3 {
  margin-bottom: 8px;
}

.link-modal-card p {
  margin-bottom: 14px;
  color: #555;
}

.link-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #00d084;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.link-modal-btn:hover {
  background: #00b26a;
}
/* IMAGE WRAP */
.team-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* HOVER OVERLAY */
.team-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: 0.3s ease;
}

.team-image-wrap:hover .team-hover {
  opacity: 1;
}

/* BUTTONS */
.hover-btn {
  background: white;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.hover-btn span {
  font-size: 10px;
  margin-top: 4px;
}
/* MOBILE FIX — ALWAYS SHOW ICONS */
@media (max-width: 768px) {
  .team-hover {
    opacity: 1 !important; /* always visible */
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    align-items: flex-end;
    padding-bottom: 10px;
  }

  .team-image-wrap:hover .team-hover {
    opacity: 1; /* override hover */
  }

  .hover-btn {
    min-width: 70px;
    min-height: 60px;
    font-size: 18px;
    padding: 8px;
  }

  .hover-btn span {
    font-size: 10px;
  }
}/* MOBILE = SAME AS DESKTOP (NO HOVER NEEDED) */
@media (max-width: 768px) {
  .team-hover {
    opacity: 1 !important;   /* always visible */
    background: rgba(0,0,0,0.55); /* optional overlay */
  }

  .team-image-wrap:hover .team-hover {
    opacity: 1;
  }
}