/* =========================================================
   NAYRA PACKER & MOVERS COMPANY — Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy:        #14213D;
  --navy-deep:   #0E1830;
  --navy-2:      #1B2A4A;
  --amber:       #E8871E;
  --amber-light: #F5B33D;
  --rust:        #C1440E;
  --bg:          #F6F7F9;
  --surface:     #FFFFFF;
  --ink:         #22262E;
  --muted:       #5A6472;
  --line:        #E3E6EC;

  --font-head: 'Oswald', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --container: 1160px;
  --radius: 8px;
  --shadow-soft: 0 6px 24px rgba(14, 24, 48, 0.08);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
svg{ width:20px; height:20px; flex-shrink:0; vertical-align:middle; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--ink); }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
:focus-visible{
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Scroll-reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(.2,.7,.3,1), transform 0.65s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.in-view{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}
/* Stagger cards within a grid so they arrive in sequence rather than all at once */
.grid .reveal:nth-child(1){ transition-delay: .03s; }
.grid .reveal:nth-child(2){ transition-delay: .09s; }
.grid .reveal:nth-child(3){ transition-delay: .15s; }
.grid .reveal:nth-child(4){ transition-delay: .21s; }
.grid .reveal:nth-child(5){ transition-delay: .27s; }
.grid .reveal:nth-child(6){ transition-delay: .33s; }
.grid .reveal:nth-child(7){ transition-delay: .39s; }
.grid .reveal:nth-child(8){ transition-delay: .45s; }
.steps .reveal:nth-child(1){ transition-delay: .03s; }
.steps .reveal:nth-child(2){ transition-delay: .12s; }
.steps .reveal:nth-child(3){ transition-delay: .21s; }
.steps .reveal:nth-child(4){ transition-delay: .30s; }

/* ---------- Hover lift for interactive cards ---------- */
.service-card,
.service-detail,
.testimonial,
.info-card{
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover,
.service-detail:hover,
.testimonial:hover,
.info-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(14,24,48,0.12);
}
@media (prefers-reduced-motion: reduce){
  .service-card:hover, .service-detail:hover, .testimonial:hover, .info-card:hover{ transform:none; }
}

/* ---------- Buttons ---------- */
.btn svg{ margin-right: 8px; }
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary{
  background: linear-gradient(100deg, var(--amber), var(--amber-light));
  color: var(--navy-deep);
}
.btn-primary:hover{ box-shadow: 0 8px 20px rgba(232,135,30,0.35); transform: translateY(-1px); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover{ border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-navy{
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover{ background: var(--navy-2); transform: translateY(-1px); }
.btn-block{ width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar{
  background: var(--navy-deep);
  color: #C9D2E3;
  font-size: 13.5px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a{ color:#C9D2E3; }
.topbar a:hover{ color: var(--amber-light); }
.topbar-links{ display:flex; gap:18px; flex-wrap:wrap; }
.topbar-links span{ display:inline-flex; align-items:center; gap:6px; margin-right:18px; }
.topbar-links span:last-child{ margin-right:0; }
.topbar-links span svg{ margin-right:4px; }
.topbar-gst{ opacity:0.85; }

/* ---------- Header / Nav ---------- */
.site-header{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 52px; width:auto; }
.brand-text{ display:none; }

.nav-toggle{
  display:none;
  background:none;
  border:2px solid var(--navy);
  border-radius:6px;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:"";
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
  position:relative;
}
.nav-toggle::before{ transform: translateY(-7px); position:absolute; }
.nav-toggle::after{ transform: translateY(7px); position:absolute; }

.main-nav ul{ display:flex; align-items:center; gap: 4px; }
.main-nav a{
  display:block;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  border-radius: 4px;
}
.main-nav a:hover{ color: var(--rust); }
.main-nav a.active{ color: var(--rust); }
.nav-cta{
  margin-left: 8px;
}
.nav-cta .btn{ padding: 10px 20px; font-size:14px; }

@media (max-width: 900px){
  .brand img{ height:44px; }
  .nav-toggle{ display:flex; }
  .main-nav{
    display:none;
    position:absolute;
    top: 100%;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open{ display:block; }
  .main-nav ul{ flex-direction:column; align-items:stretch; padding: 8px 20px 20px; gap:0; }
  .main-nav a{ padding: 14px 4px; border-bottom:1px solid var(--line); }
  .nav-cta{ margin: 12px 0 0; }
  .nav-cta .btn{ width:100%; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  align-items:center;
  gap: 40px;
  padding: 64px 0 48px;
}
.hero h1{
  color:#fff;
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 18px;
}
.hero h1 em{ font-style: normal; color: var(--amber-light); }
.hero p.lead{
  color:#C9D2E3;
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 34px; }
.hero-stats{ display:flex; gap: 28px; flex-wrap:wrap; }
.hero-stats div{ min-width: 110px; margin-right: 28px; }
.hero-stats div:last-child{ margin-right:0; }
.hero-stats strong{
  display:block;
  font-family: var(--font-head);
  font-size: 26px;
  color:#fff;
}
.hero-stats span{ color:#9FADC7; font-size: 13.5px; }
.hero-art img{ width:100%; border-radius: var(--radius); }

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; padding-top: 36px; }
  .hero-art{ order:-1; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff;
  padding: 48px 0;
}
.page-header h1{ color:#fff; margin-bottom:8px; font-size: clamp(26px,4vw,38px); }
.breadcrumb{ color:#9FADC7; font-size:14px; }
.breadcrumb a{ color:#C9D2E3; }
.breadcrumb a:hover{ color: var(--amber-light); }

/* ---------- Section spacing ---------- */
.section{ padding: 64px 0; }
.section-tight{ padding: 40px 0; }
.section-alt{ background: var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-navy{ background: var(--navy); color:#fff; }
.section-navy h2, .section-navy h3{ color:#fff; }
.section-head{ max-width: 640px; margin-bottom: 36px; }
.section-head h2{ font-size: clamp(24px, 3.2vw, 32px); }
.section-head p{ color: var(--muted); }

/* ---------- Icon badges (colored, used across cards) ---------- */
.icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--rust));
  box-shadow: 0 6px 14px rgba(193,68,14,0.28);
}
.icon-badge svg{ color:#fff; }
.icon-badge-md{ width:52px; height:52px; margin-bottom:16px; }
.icon-badge-md svg{ width:24px; height:24px; }
.icon-badge-lg{ width:64px; height:64px; border-radius:16px; }
.icon-badge-lg svg{ width:28px; height:28px; }
.icon-badge-sm{ width:46px; height:46px; border-radius:12px; margin-top:0; }
.icon-badge-sm svg{ width:21px; height:21px; }

/* ---------- Service cards ---------- */
.grid{ display:grid; gap: 22px; }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr);} .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 6px;
  padding: 26px 22px;
}
.service-card h3{ font-size:18px; margin-bottom:8px; }
.service-card p{ color: var(--muted); font-size:14.5px; margin-bottom:0; }

/* full service page item with number ribbon */
.service-detail{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display:flex;
  gap:20px;
  align-items:flex-start;
}
.service-detail h3{ margin-bottom:6px; font-size:19px; }
.service-detail p{ color:var(--muted); margin-bottom:0; font-size:15px; }

/* ---------- Process steps ---------- */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step{
  padding: 28px 22px;
  border-left: 1px solid var(--line);
  position:relative;
}
.step:first-child{ border-left:none; }
.step .num{
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--amber);
  opacity:0.9;
  line-height:1;
  margin-bottom:10px;
}
.step h3{ font-size:17px; margin-bottom:6px; }
.step p{ color: var(--muted); font-size:14px; margin-bottom:0; }
@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr 1fr; border:none; }
  .step{ border: 1px solid var(--line); margin: -1px 0 0 -1px; }
}
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr; } }

/* ---------- Why us / split ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}
@media (max-width: 860px){ .split{ grid-template-columns:1fr; gap:28px; } }
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child{ border-bottom:none; }
.check-list svg{ flex:none; width:20px; height:20px; color: var(--rust); margin-top:3px; margin-right:4px; }
.check-list strong{ display:block; color:var(--navy); font-family:var(--font-head); font-weight:600; }
.check-list span{ color:var(--muted); font-size:14.5px; }

.stat-panel{
  background: var(--navy);
  color:#fff;
  border-radius: var(--radius);
  padding: 30px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-panel div strong{ display:block; font-family:var(--font-head); font-size:30px; color: var(--amber-light); }
.stat-panel div span{ color:#B7C2D9; font-size:13.5px; }

/* ---------- Testimonials ---------- */
.testimonial{
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  padding: 24px;
}
.testimonial p{ color: var(--ink); font-size:15px; }
.testimonial .who{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.testimonial .avatar{
  width:40px;height:40px;border-radius:50%;
  background: var(--navy);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head); font-weight:600;
}
.testimonial .who strong{ display:block; font-size:14px; color:var(--navy); }
.testimonial .who span{ font-size:12.5px; color:var(--muted); }
.stars{ color: var(--amber); letter-spacing:2px; margin-bottom:10px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(100deg, var(--rust), var(--amber));
  color:#fff;
  border-radius: var(--radius);
  padding: 36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:6px; font-size: clamp(20px,3vw,28px); }
.cta-band p{ color: #FCE9D2; margin-bottom:0; }
.cta-band .btn{ white-space:nowrap; }

/* ---------- Forms ---------- */
.form-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:620px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{
  display:block;
  font-size: 13.5px;
  font-weight:600;
  color: var(--navy);
  margin-bottom:6px;
  font-family: var(--font-head);
  letter-spacing:0.2px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding: 12px 14px;
  border:1px solid var(--line);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background:#FAFBFC;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--amber);
  background:#fff;
  outline:none;
}
.field textarea{ resize: vertical; min-height:110px; }
.field-note{ font-size:12.5px; color:var(--muted); margin-top:4px; }
.form-msg{
  padding: 14px 16px;
  border-radius:6px;
  margin-bottom: 18px;
  font-size:14.5px;
  display:none;
}
.form-msg.show{ display:block; }
.form-msg.success{ background:#E7F6EC; color:#1E6B3A; border:1px solid #BFE6CB; }
.form-msg.error{ background:#FDECEA; color:#B3261E; border:1px solid #F5C2BD; }

/* ---------- Contact info blocks ---------- */
.info-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  padding:20px;
}
.info-card h3{ font-size:15px; margin-bottom:4px; }
.info-card p{ margin-bottom:0; color:var(--muted); font-size:14.5px; }
.info-card a{ color: var(--muted); }
.info-card a:hover{ color: var(--rust); }

.map-wrap{
  border-radius:8px;
  overflow:hidden;
  border:1px solid var(--line);
  line-height:0;
}
.map-wrap iframe{ width:100%; height:340px; border:0; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color:#B7C2D9; padding-top: 56px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand img{ height:46px; margin-bottom:14px; }
.footer-brand p{ color:#8FA0C2; font-size:14px; }
.site-footer h4{ color:#fff; font-size:15px; margin-bottom:16px; font-family:var(--font-head); letter-spacing:0.3px; }
.site-footer ul li{ margin-bottom:10px; }
.site-footer a{ color:#B7C2D9; font-size:14.5px; }
.site-footer a:hover{ color: var(--amber-light); }
.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{ border-color: var(--amber-light); background: rgba(245,179,61,0.1); }
.footer-social svg{ width:16px;height:16px; }
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding: 18px 0;
  font-size: 13px;
  color:#7E8FB2;
}
.footer-bottom a{ color:#9FADC7; }

/* ---------- Floating action buttons ---------- */
.float-actions{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn{
  width:56px;height:56px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color:#fff;
}
.float-btn.whatsapp{ background:#25D366; }
.float-btn.call{ background: var(--rust); }
.float-btn svg{ width:26px;height:26px; }

/* ---------- Utility ---------- */
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.badge{
  display:inline-block;
  background: rgba(232,135,30,0.12);
  color: var(--rust);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight:600;
  letter-spacing:0.4px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.divider{ height:1px; background:var(--line); border:none; margin: 48px 0; }

.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
@media (max-width:760px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px){ .gallery-grid{ grid-template-columns: 1fr; } }
.gallery-grid img{ border-radius:6px; border:1px solid var(--line); width:100%; height:100%; object-fit:cover; }

.area-tags{ display:flex; flex-wrap:wrap; gap:10px; }
.area-tags span{
  background:#fff;
  border:1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--navy);
}
