/* === CIVARO HANDY & HAUL — LUXURY DESIGN SYSTEM === */

/* === PALETTE === */
:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-warm: #f7f4ee;
  --accent: #c9a84c;
  --accent-dark: #a8863a;
  --accent-hover: #b8943f;
  --accent-dim: rgba(201,168,76,0.08);
  --accent-dim2: rgba(201,168,76,0.15);
  --text: #1a1814;
  --text-secondary: #4a4535;
  --text-muted: #8a8272;
  --border: rgba(201,168,76,0.18);
  --border-strong: rgba(201,168,76,0.40);
  --shadow-sm: 0 1px 4px rgba(26,24,20,0.06);
  --shadow-md: 0 4px 20px rgba(26,24,20,0.08);
  --shadow-lg: 0 8px 40px rgba(26,24,20,0.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.22);
  --shadow-gold-hover: 0 6px 30px rgba(201,168,76,0.32);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; letter-spacing: -0.02em; }

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-brand-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* === HERO === */
.hero {
  background: var(--text);
  padding: 6rem 3rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201,168,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.40);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(201,168,76,0.06);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.80);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 3rem;
}

.trust-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.75rem;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* === SECTIONS === */
.section {
  padding: 5rem 3rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === GOLD DIVIDER === */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 3rem;
  max-width: calc(1080px - 6rem);
  margin-left: auto;
  margin-right: auto;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.gold-divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,0.15);
}

/* === WHY CIVARO === */
.why-section {
  background: var(--surface-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem;
  position: relative;
}

.testimonial-card::before {
  content: '\u201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent-dim2);
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.star {
  color: var(--accent);
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-dark);
}

.testimonial-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === MEET AHMAD === */
.owner-section {
  padding: 5rem 3rem;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.owner-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.owner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.owner-photo-wrap {
  flex-shrink: 0;
}

.owner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.45);
  box-shadow:
    0 0 0 5px rgba(201,168,76,0.08),
    0 12px 40px rgba(0,0,0,0.50);
}

.owner-content { flex: 1; min-width: 0; }

.owner-label {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.875rem;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.owner-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.owner-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 480px;
}

.owner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.10);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.20);
}

.owner-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
}

/* === SERVICE AREA === */
.area-section {
  background: var(--surface-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.area-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.area-counties {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.area-county {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 2.5rem;
  text-align: center;
  min-width: 220px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.area-county::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.area-county h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.area-county p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === HOW IT WORKS === */
.steps-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent-dim2);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  display: block;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  display: none;
  align-items: center;
  font-size: 1.5rem;
  color: var(--border);
}

/* === CTA STRIP === */
.cta-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 0 3rem 5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 0.875rem;
  letter-spacing: -0.03em;
}

.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.65;
}

.deposit-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  background: var(--surface-warm);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

/* === CONTACT STRIP === */
.contact-strip {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 0 3rem 3rem;
}

.contact-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  min-width: 180px;
  justify-content: center;
}

.contact-btn-phone {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.contact-btn-phone:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

.contact-btn-email {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.contact-btn-email:hover {
  background: var(--accent-dim2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.contact-btn:active { transform: scale(0.98); }

/* === FOOTER === */
footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 3rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img { height: 32px; width: 32px; object-fit: contain; }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-top: 1px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 960px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.30);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.60); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 4.5rem 1.5rem 4rem; }
  .hero-sub { font-size: 0.98rem; }

  .trust-bar { padding: 1.25rem 1.5rem; }
  .trust-item { padding: 0.4rem 1rem; }
  .trust-text { font-size: 0.75rem; }

  .section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2rem); }

  .gold-divider { margin: 0 1.5rem; }

  .services-grid { gap: 1rem; }
  .service-card { padding: 1.5rem 1.25rem; }

  .owner-section { padding: 3.5rem 1.5rem; }
  .owner-inner { flex-direction: column; text-align: center; gap: 1.75rem; }
  .owner-content p { margin: 0 auto; }
  .owner-badges { justify-content: center; }

  .cta-strip { margin: 0 1.5rem 3.5rem; padding: 3rem 1.5rem; }

  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-bar { padding: 1rem 0.75rem; }
  .trust-inner { gap: 0; }
  .trust-item { padding: 0.4rem 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .steps-row { flex-direction: column; align-items: center; }
  .area-county { min-width: 160px; padding: 1.25rem 1.5rem; }
}