/* ============================================
   MASCOM SYSTEMS — Premium IT Company Website
   ============================================ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.35);
  --bg-dark: #0a1208;
  --bg-green: #0d1a0d;
  --bg-card: #0e1a0e;
  --bg-card2: #101e10;
  --text-white: #f0f0f0;
  --text-muted: #a8bfa8;
  --border-gold: 1px solid rgba(201, 168, 76, 0.4);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 18, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 7px 14px;
  color: var(--text-white);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-link.active-link {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
}

.nav-cta {
  flex-shrink: 0;
  margin-left: 8px;
  font-size: 0.85rem;
  padding: 9px 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   GOLD BUTTON
   ============================================ */

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #b8882a 0%, #e8c96a 50%, #b8882a 100%);
  color: #0a1208;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 11px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.55);
  background: linear-gradient(135deg, #c9963a 0%, #f0d478 50%, #c9963a 100%);
}

.btn-gold:active {
  transform: translateY(0);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatYDelay {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitRotateRev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes dotOrbit1 {
  from { transform: rotate(0deg) translateX(72px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(72px) rotate(-360deg); }
}

@keyframes dotOrbit2 {
  from { transform: rotate(120deg) translateX(52px) rotate(-120deg); }
  to { transform: rotate(480deg) translateX(52px) rotate(-480deg); }
}

@keyframes dotOrbit3 {
  from { transform: rotate(240deg) translateX(90px) rotate(-240deg); }
  to { transform: rotate(600deg) translateX(90px) rotate(-600deg); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}

.float-anim { animation: floatY 4s ease-in-out infinite; }
.float-anim-delay { animation: floatYDelay 5s ease-in-out infinite 1s; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, #0d2010 0%, #080e08 60%),
              linear-gradient(180deg, #0a1208 0%, #0d1a0d 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left: Tech Illustration */
.hero-left {
  display: flex;
  justify-content: center;
}

.tech-illustration {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.ring-1 {
  width: 200px;
  height: 200px;
  border-style: dashed;
  animation: orbitRotate 20s linear infinite;
}

.ring-2 {
  width: 145px;
  height: 145px;
  animation: orbitRotateRev 15s linear infinite;
  border-color: rgba(201, 168, 76, 0.18);
}

.ring-3 {
  width: 240px;
  height: 240px;
  border-color: rgba(201, 168, 76, 0.1);
  border-style: dotted;
  animation: orbitRotate 30s linear infinite;
}

.server-core {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  z-index: 3;
}

.dot-1 { animation: dotOrbit1 8s linear infinite; }
.dot-2 { animation: dotOrbit2 12s linear infinite; }
.dot-3 { animation: dotOrbit3 16s linear infinite; width: 7px; height: 7px; }

/* Center: Hero Content */
.hero-center {
  text-align: center;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-title span {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #b8882a 0%, #e8c96a 35%, #f5e08a 50%, #e8c96a 65%, #b8882a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  letter-spacing: 4px;
  text-shadow: none;
}

.hero-title span:first-child {
  margin-bottom: 2px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.since-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}

/* Right: Quality Badge */
.hero-right {
  display: flex;
  justify-content: center;
}

.quality-badge {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  border-style: dashed;
  animation: orbitRotate 25s linear infinite;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2), inset 0 0 20px rgba(201, 168, 76, 0.05);
}

.quality-badge-inner {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(13, 26, 13, 0.9) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2), inset 0 0 30px rgba(201, 168, 76, 0.05);
  text-align: center;
  padding: 16px;
}

.badge-top {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
}

.badge-icon {
  width: 36px;
  height: 36px;
}

.badge-main {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.1;
}

.badge-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.badge-year {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  padding-top: 4px;
  margin-top: 2px;
  width: 100%;
  text-align: center;
}

/* ============================================
   INFO SECTION (Services + Contact + QR)
   ============================================ */

.info-section {
  background: linear-gradient(180deg, #0a1208 0%, #0d1a0d 100%);
  padding: 60px 0;
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

/* Services Card */
.services-card {
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(13, 26, 13, 0.95) 100%);
  padding: 24px;
  box-shadow: var(--shadow-card), 0 0 20px rgba(201, 168, 76, 0.06);
  transition: box-shadow 0.3s;
}

.services-card:hover {
  box-shadow: var(--shadow-card), 0 0 30px rgba(201, 168, 76, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.card-header-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-white);
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: default;
}

.services-list li:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold-light);
  padding-left: 14px;
}

.svc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Contact Info Card */
.contact-info-card {
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(13, 26, 13, 0.95) 100%);
  padding: 28px 24px;
  box-shadow: var(--shadow-card), 0 0 20px rgba(201, 168, 76, 0.06);
}

.owner-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 22px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.address-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.address-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.address-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.address-type {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.address-block p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.phone-numbers {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 16px;
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phones span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.contact-link-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-link-item a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.contact-link-item a:hover {
  color: var(--gold-light);
}

/* QR Panel */
.qr-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-box {
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 160px;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.08);
}

.qr-placeholder {
  width: 110px;
  height: 110px;
}

.qr-placeholder svg {
  width: 100%;
  height: 100%;
}

.qr-label {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 600;
}

.btn-visit {
  font-size: 0.75rem;
  padding: 9px 16px;
  text-align: center;
  width: 100%;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: linear-gradient(180deg, #0d1a0d 0%, #0e1e0e 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}
.trust-strip::before { top: 0; }
.trust-strip::after { bottom: 0; }

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.trust-title {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.trust-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 100px;
}

.trust-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.06);
  transition: all 0.3s;
  animation: pulseGold 3s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon { animation-delay: 0.6s; }
.trust-item:nth-child(3) .trust-icon { animation-delay: 1.2s; }
.trust-item:nth-child(4) .trust-icon { animation-delay: 1.8s; }
.trust-item:nth-child(5) .trust-icon { animation-delay: 2.4s; }

.trust-item:hover .trust-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.trust-item:hover span {
  color: var(--gold-light);
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-section {
  background: linear-gradient(180deg, #0e1e0e 0%, #0a1208 100%);
  padding: 80px 0;
  position: relative;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Form Panel */
.form-panel {
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(13, 26, 13, 0.98) 100%);
  padding: 36px 32px;
  box-shadow: var(--shadow-card), 0 0 30px rgba(201, 168, 76, 0.06);
}

.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group-textarea {
  align-items: flex-start;
}

.form-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  z-index: 1;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

.form-icon-top {
  top: 16px;
  transform: none;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 13px 16px 13px 44px;
  transition: all 0.25s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(168, 191, 168, 0.5);
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.form-input.error {
  border-color: #e05555;
  box-shadow: 0 0 10px rgba(224, 85, 85, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

.error-msg {
  display: none;
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 0.7rem;
  color: #e07070;
  font-weight: 500;
}

.error-msg.visible {
  display: block;
}

.form-group {
  margin-bottom: 4px;
}

.btn-send {
  margin-top: 12px;
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-error {
  padding: 12px 16px;
  border: 1px solid rgba(224, 85, 85, 0.4);
  border-radius: 8px;
  background: rgba(224, 85, 85, 0.06);
  color: #e07070;
  font-size: 0.82rem;
  margin-top: 8px;
}

/* Form Info Panel */
.form-info-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.form-info-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.3;
}

.form-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.envelope-illustration {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.2));
}

.envelope-illustration svg {
  width: 100%;
  height: auto;
}

.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.quick-info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.quick-info-item a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.quick-info-item a:hover {
  color: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, #080e08 0%, #050c05 100%);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-since {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-info li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(168, 191, 168, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .info-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .qr-panel {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-info-panel {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .envelope-illustration {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 18, 8, 0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-left,
  .hero-right {
    justify-content: center;
  }

  .hero-title span {
    font-size: 2.8rem;
  }

  .info-container {
    grid-template-columns: 1fr;
  }

  .qr-panel {
    grid-column: auto;
    flex-direction: column;
    align-items: center;
  }

  .trust-features {
    gap: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .form-info-panel {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title span {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .owner-name {
    font-size: 1.5rem;
  }

  .phones span {
    font-size: 0.95rem;
  }

  .trust-features {
    gap: 16px;
  }

  .trust-item {
    min-width: 80px;
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
