/* ============================================================
   Sanju Logistics Packers And Movers
   Clean rebuild of the original Wix site
   Palette: #FF5032 (brand orange), #212121 (ink), white
   ============================================================ */

:root {
  --brand: #FF5032;
  --brand-dark: #B23A22;
  --brand-deep: #8E2E1B;
  --brand-soft: #FFC5B5;
  --ink: #212121;
  --ink-soft: #4A4A4A;
  --muted: #636363;
  --line: #E8E8E8;
  --paper: #FFFFFF;
  --paper-2: #F7F5F3;
  --dark: #141414;
  --dark-2: #1E1E1E;
  --shadow: 0 10px 30px rgba(33, 33, 33, 0.10);
  --shadow-lg: 0 20px 50px rgba(33, 33, 33, 0.16);
  --radius: 10px;
  --maxw: 1180px;
  --font-h: 'Barlow', 'Segoe UI', Arial, sans-serif;
  --font-b: 'Barlow', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-h); font-weight: 500; color: var(--ink); line-height: 1.25; }

.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: 30px;
  background: var(--brand);
  color: #fff !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 0;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff !important; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--ink) !important; }
.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #000; }

/* ---------- Top bar ---------- */
.topbar { background: var(--dark); color: #fff; font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.topbar a { color: #fff; }
.topbar .social { display: flex; gap: 14px; align-items: center; }
.topbar .social a { opacity: 0.92; }
.topbar .social a:hover { opacity: 1; }
.topbar .social img { width: 19px; height: 19px; }
.topbar .phone { display: flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name { font-family: var(--font-h); font-weight: 500; color: var(--ink); line-height: 1.1; }
.brand-name strong { color: var(--brand); font-weight: 600; }
.brand-name small { display: block; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav .drop-btn {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: 0;
  background: none;
}
.nav a:hover, .nav a.active, .nav .drop-btn:hover { color: var(--brand); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-lg); min-width: 230px; max-height: 70vh; overflow: auto;
  padding: 8px; display: none; z-index: 300;
}
.dropdown-menu a { display: block; padding: 9px 14px; font-size: 14px; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--paper-2); color: var(--brand); }
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.caret { font-size: 9px; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.28s ease, opacity 0.22s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 400;
  background: linear-gradient(165deg, #222222 0%, #121212 100%);
  overflow-y: auto; padding: 76px 26px 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.995);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mnav-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.mnav-brand img { width: 44px; height: 44px; object-fit: contain; }
.mnav-brand span { font-family: var(--font-h); font-weight: 600; color: #fff; line-height: 1.12; font-size: 17px; }
.mnav-brand small { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #aaa; font-weight: 500; margin-top: 3px; }
.mnav-links { display: flex; flex-direction: column; }
.mnav-links a {
  display: block; color: #fff; font-family: var(--font-h); font-size: 21px; font-weight: 500;
  padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav.open .mnav-links a { opacity: 1; transform: none; }
.mnav-links a:hover { color: var(--brand); padding-left: 10px; }
.mnav-links a.mnav-label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand);
  padding: 22px 4px 8px; border-bottom: 0;
}
.mnav-links .sub a { font-size: 16px; padding-left: 20px; color: #C9C9C9; font-weight: 400; }
.mnav-links .sub a:hover { color: var(--brand); padding-left: 26px; }
.mnav-call {
  margin-top: 28px; text-align: center; background: var(--brand); color: #fff !important;
  border-radius: 30px; padding: 15px 20px; font-family: var(--font-h); font-weight: 600;
  font-size: 18px; letter-spacing: 0.02em; box-shadow: 0 10px 30px rgba(255, 80, 50, 0.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease 0.3s, transform 0.45s ease 0.3s, background 0.2s ease;
}
.mobile-nav.open .mnav-call { opacity: 1; transform: none; }
.mnav-call:hover { background: var(--brand-dark); color: #fff !important; }
.mobile-nav .close { position: absolute; top: 22px; right: 24px; color: #fff; font-size: 34px; background: none; border: 0; cursor: pointer; line-height: 1; transition: transform 0.3s ease, color 0.2s ease; }
.mobile-nav .close:hover { color: var(--brand); transform: rotate(90deg); }

/* ---------- Hero ---------- */
.hero { background: var(--dark); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 560px; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 70px 20px 70px 0; }
.hero-eyebrow {
  font-family: var(--font-h); font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 15px; color: var(--brand); margin-bottom: 16px;
}
.hero h1 { color: #fff; font-size: 52px; font-weight: 500; line-height: 1.12; margin-bottom: 18px; }
.hero p.lead { color: #E6E6E6; font-size: 19px; max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; min-height: 400px; overflow: hidden; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--dark); color: #E6E6E6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-h); font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 14px; color: var(--brand); margin-bottom: 12px;
}
.section-title { font-size: 40px; margin-bottom: 14px; }
.section-sub { max-width: 720px; margin-bottom: 40px; color: var(--muted); }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .ic {
  width: 58px; height: 58px; border-radius: 50%; background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center; color: var(--brand-dark);
  font-size: 26px; font-weight: 600;
}
.service-card h3 { font-size: 20px; margin: 4px 0 0; }
.service-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.service-card .more { font-weight: 600; font-size: 14px; color: var(--brand); }

/* ---------- Highlight strip ---------- */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-top: 4px solid var(--brand); }
.highlight h3 { font-size: 20px; margin-bottom: 8px; }
.highlight p { font-size: 14.5px; color: var(--muted); }

/* ---------- Clients ---------- */
.clients { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.clients img { max-height: 70px; width: auto; filter: grayscale(0.35); opacity: 0.9; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial .quote-mark { font-size: 46px; line-height: 1; color: var(--brand); font-family: Georgia, serif; }
.testimonial p { font-size: 15px; color: var(--ink-soft); margin: 12px 0 18px; font-style: italic; }
.testimonial .name { font-family: var(--font-h); font-weight: 600; color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid a { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; background: var(--paper-2); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 500; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox .close { position: absolute; top: 22px; right: 30px; color: #fff; font-size: 34px; background: none; border: 0; cursor: pointer; }
.lightbox .prev, .lightbox .next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 40px; background: rgba(255,255,255,0.12); border: 0; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; }
.lightbox .prev { left: 20px; } .lightbox .next { right: 20px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--dark); color: #fff; padding: 66px 0; }
.page-hero h1 { color: #fff; font-size: 44px; margin-bottom: 10px; }
.page-hero .crumb { color: #bbb; font-size: 14px; letter-spacing: 0.05em; }
.page-hero .crumb a { color: var(--brand); }

/* ---------- Content blocks ---------- */
.content h2 { font-size: 32px; margin: 40px 0 16px; }
.content h3 { font-size: 25px; margin: 32px 0 14px; }
.content h4 { font-size: 20px; margin: 24px 0 10px; }
.content p { margin: 0 0 18px; }
.content .lead { font-size: 19px; }
.content ul { margin: 0 0 20px 22px; }
.content li { margin-bottom: 8px; }
.content img.article-img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px 24px; margin-bottom: 14px; }
.faq-item h4 { margin: 0 0 6px; font-weight: 600; }
.faq-item p { margin: 0; font-size: 15.5px; }
.faq-section h2 { margin-top: 48px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; padding: 60px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.92); }
.cta-band .btn { background: #fff; color: var(--brand-dark) !important; }
.cta-band .btn:hover { background: var(--paper-2); }
.cta-band .btn-outline { background: transparent; color: #fff !important; border: 2px solid #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--ink) !important; }

/* ---------- Contact info ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.contact-card .ic { font-size: 30px; margin-bottom: 12px; }
.contact-card h3 { font-size: 19px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--muted); word-break: break-word; }
.contact-card a { font-weight: 600; }

/* ---------- Form ---------- */
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); max-width: 620px; }
.contact-form label { display: block; font-family: var(--font-h); font-weight: 500; font-size: 14px; color: var(--ink); margin: 16px 0 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font-family: var(--font-b); font-size: 15px; color: var(--ink); background: var(--paper);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #bbb; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h3 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { color: #bbb; }
.footer a:hover { color: var(--brand); }
.footer .brand-name { color: #fff; margin: 14px 0 12px; }
.footer p { font-size: 14.5px; }
.footer .hours-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 7px 0; font-size: 14.5px; }
.footer .hours-row span:last-child { color: #fff; }
.footer .social { display: flex; gap: 14px; margin-top: 16px; }
.footer .social img { width: 22px; height: 22px; opacity: 0.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 13.5px; color: #888; }
.footer-bottom a { color: var(--brand); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 300; width: 62px; height: 62px; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: transform 0.2s ease; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Footer ---------- */
.footer-title { font-size: 26px; color: #fff; margin-bottom: 30px; }
.footer .open-popup { margin-top: 12px; border: 0; cursor: pointer; }
.footer-map { margin: 0 0 28px; }
.footer-map iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; display: block; }

/* ---------- Floating social bar ---------- */
.social-float { position: fixed; left: 14px; top: 50%; transform: translateY(-50%); z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.social-float a { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.18); transition: transform 0.2s ease; }
.social-float a:hover { transform: scale(1.1); }
.social-float img { width: 20px; height: 20px; }

/* ---------- Get Call Back popup ---------- */
.popup-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; padding: 20px; }
.popup-overlay.open { display: flex; }
.popup { background: #fff; color: var(--ink); border-radius: 14px; padding: 30px 26px; max-width: 400px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.35); max-height: 92vh; overflow: auto; }
.popup h3 { font-size: 24px; color: var(--brand-dark); margin-bottom: 6px; }
.popup p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.popup label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin: 12px 0 5px; }
.popup input, .popup textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--ink); }
.popup textarea { min-height: 84px; resize: vertical; }
.popup .btn { width: 100%; margin-top: 16px; border: 0; cursor: pointer; }
.popup-close { position: absolute; top: 8px; right: 14px; font-size: 28px; background: none; border: 0; color: #888; cursor: pointer; line-height: 1; }
.popup-close:hover { color: var(--brand); }

/* ---------- Blog ---------- */
.blog-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; box-shadow: var(--shadow); }
.blog-card img { width: 220px; height: 150px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.blog-card h2 { font-size: 22px; margin-bottom: 8px; }
.blog-card .date { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

/* ---------- Home: buttons ---------- */
.btn-green { background: #1B5B3F; }
.btn-green:hover { background: #13452E; }

/* ---------- Home: About ---------- */
.about-title {
  font-family: var(--font-h); font-size: 46px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--ink); margin-bottom: 18px;
}
.about-text { font-size: 18px; color: var(--ink-soft); margin-bottom: 26px; }

/* ---------- Home: Our Services showcase ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 26px; align-items: center; }
.showcase-img img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.showcase-body { padding: 10px 8px; }
.showcase-title { color: #FF5032; }
.showcase-sub { font-family: var(--font-h); font-weight: 500; font-size: 18px; color: var(--ink-soft); margin: 10px 0 20px; }
.features { display: flex; flex-direction: column; gap: 16px; margin: 0 0 26px; }
.feature { display: flex; align-items: center; gap: 12px; }
.feature-ic {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-dark); font-size: 22px;
}
.feature span { font-family: var(--font-h); font-weight: 600; font-size: 19px; color: var(--ink); }

/* ---------- Home: service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 302/523; object-fit: cover; }
.card-body { padding: 20px 20px 22px; }
.card-body h3 { font-size: 20px; margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.card-body .more { font-weight: 600; font-size: 14px; color: var(--brand); }

/* ---------- Home: packing materials ---------- */
.packing { position: relative; padding: 90px 0; color: #fff; background: #141414 url('../images/11062b_b58444d0dad140688dc506c9f8e23f91.jpg') center/cover no-repeat; }
.packing::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.packing-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 20px; text-align: center; }
.packing-eyebrow { font-family: var(--font-h); font-weight: 700; letter-spacing: 0.25em; font-size: 17px; color: #fff; margin-bottom: 14px; }
.packing-title { color: #FF5032; font-size: 45px; font-weight: 700; margin-bottom: 12px; }
.packing-sub { font-size: 18px; color: #fff; }

/* ---------- Home: Why choose ---------- */
.why { max-width: 860px; }
.why-text { font-size: 17px; color: var(--ink-soft); }

/* ---------- Home: Esteemed clients ---------- */
.esteemed-title {
  text-align: center; font-family: var(--font-h); font-weight: 700; font-size: 30px;
  color: #FF4040; margin-bottom: 28px;
}
.logo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.logo-cell { border-radius: 8px; overflow: hidden; min-height: 150px; }
.logo-cell.tile {
  background-repeat: repeat; background-position: center center; background-size: 200px auto;
  border: 1px solid var(--line);
}
.logo-cell.t1 { background-image: url('../images/df10e4_ae94597ea13848178f630f5b8003dea4.jpg'); }
.logo-cell.t2 { background-image: url('../images/df10e4_6124d16c5e834ddca1742544a8809d09.png'); }
.logo-cell.t3 { background-image: url('../images/df10e4_3022d4b976e147aab269ef7217014574.png'); }
.logo-cell.union { background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 10px; }
.logo-cell.union img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Home: testimonials ---------- */
.testimonial-bg { position: relative; padding: 80px 0; color: #fff; background: #141414 url('../images/74f558_5263b2f293a74a6287631aa828a668cc.jpg') center/cover no-repeat; }
.testimonial-bg::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.testimonial-bg .container { position: relative; }
.testimonial-heading { text-align: center; color: #fff; font-size: 45px; font-weight: 700; margin-bottom: 34px; }
.testimonial .stars { color: #F5B301; font-size: 18px; letter-spacing: 4px; margin-bottom: 10px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial p { font-size: 15px; color: var(--ink-soft); margin: 12px 0 18px; font-style: italic; }
.testimonial .name { font-family: var(--font-h); font-weight: 600; color: var(--brand); }

/* ---------- Home: banner ---------- */
.banner-img img { width: 100%; height: auto; display: block; }

/* ---------- Premium UX ---------- */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation: vt-out 0.3s ease both; }
::view-transition-new(root) { animation: vt-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(12px) scale(0.99); filter: blur(2px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(26px) scale(0.99); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

html { scrollbar-color: #c9c9c9 #f1f1f1; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c9c9c9; border-radius: 20px; border: 2px solid #f1f1f1; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

.header { transition: box-shadow 0.3s ease, background 0.3s ease; }
.header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); border-bottom-color: transparent; }

main { min-height: 55vh; }

.btn:active { transform: translateY(0) scale(0.97); }

.card img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover img { transform: scale(1.08); }

.to-top {
  position: fixed; right: 22px; bottom: 96px; z-index: 290;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brand); color: #fff; font-size: 20px; line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-dark); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .to-top { transition: none; }
}

/* ---------- Responsive ---------- */
html, body { overflow-x: hidden; }

/* Tablet */
@media (max-width: 1024px) {
  .header-inner { min-height: 64px; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 15px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding: 0 0 54px; }
  .hero-photo { min-height: 320px; order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .two-col img { max-height: 340px; width: 100%; object-fit: cover; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-img { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-map iframe { height: 280px; }
}

/* Large phone / small tablet */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .section-title { font-size: 33px; }
  .page-hero { padding: 52px 0; }
  .hero-photo { min-height: 240px; }
  .hero-text { text-align: center; align-items: center; padding: 42px 0 50px; }
  .hero-text h1 { font-size: 40px; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 0.24em; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn { flex: 1 1 170px; text-align: center; justify-content: center; }
  .about-title { font-size: 34px; }
  .showcase-title { font-size: 34px; }
  .packing-title { font-size: 34px; }
  .packing { padding: 70px 0; }
  .testimonial-heading { font-size: 34px; }
  .footer-title { font-size: 24px; }
}

/* Phone */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { display: grid; grid-template-columns: 118px 1fr; align-items: stretch; }
  .card img { aspect-ratio: 118/196; height: 100%; object-fit: cover; }
  .card-body { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
  .card-body h3 { font-size: 17px; margin-bottom: 6px; }
  .card-body p { font-size: 13px; margin-bottom: 10px; }
  .highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-cell { min-height: 118px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .phone { display: none; }
  .topbar .container { justify-content: center; }
  .topbar .social img { width: 17px; height: 17px; }
  .blog-card { flex-direction: column; }
  .blog-card img { width: 100%; height: 180px; }
  .page-hero h1 { font-size: 31px; }
  .social-float { display: none; }
  .footer-map iframe { height: 240px; }
  .two-col { gap: 28px; }
  .showcase-body { padding: 0; }
  .feature span { font-size: 17px; }
  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .to-top { right: 16px; bottom: 84px; width: 42px; height: 42px; font-size: 17px; }
  .popup { padding: 26px 20px; }
}

/* Small phone */
@media (max-width: 400px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .hero h1 { font-size: 33px; }
  .hero-photo { min-height: 200px; }
  .about-title { font-size: 29px; }
  .packing-title { font-size: 29px; }
  .testimonial-heading { font-size: 29px; }
  .page-hero h1 { font-size: 28px; }
  .card { grid-template-columns: 104px 1fr; }
  .card img { aspect-ratio: 104/172; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { flex: 1 1 auto; width: 100%; }
  .brand-name small { font-size: 10px; }
  .header-inner { min-height: 58px; }
}
