/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.logo-text .brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Impact', 'Arial Black', sans-serif;
}

.logo-text .brand-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #E21C21;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E21C21;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E21C21;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.3s;
}

.phone-btn:hover {
  background: #c41518;
}

.phone-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-short {
  min-height: 60vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 20px 60px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-content h1.hero-branded {
  font-size: 72px;
  font-family: 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 2px;
  line-height: 1.05;
  text-align: left;
}

.hero-content p {
  font-size: 17px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-red {
  display: inline-block;
  background: #E21C21;
  color: #fff;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-red:hover {
  background: #c41518;
}

/* ===== SERVICE ICONS ROW ===== */
.services-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background: #111;
}

.service-icon-item {
  text-align: center;
  color: #fff;
}

.service-icon-item .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E21C21;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon-item .icon-circle svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.service-icon-item h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: 80px 40px;
}

.section-dark {
  background: #111;
  color: #fff;
}

.section-light {
  background: #fff;
  color: #333;
}

.section-split {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.section-split .split-image {
  flex: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.section-split .split-content {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.section h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== SILENCER SHOP SECTION ===== */
.silencer-section {
  background: #111;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.silencer-section h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.silencer-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
}

.silencer-section .phone-highlight {
  font-size: 22px;
  font-weight: 700;
  color: #E21C21;
  margin-top: 20px;
}

/* ===== COMPREHENSIVE SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  padding: 0;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-content p:last-child {
  margin-top: auto;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: inherit;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Owner split layout */
.owner-split {
  display: flex;
  align-items: stretch;
  background: #0a0a0a;
}

.owner-split .owner-image {
  flex: 1;
  background-size: cover;
  background-position: center top;
  min-height: 500px;
  position: relative;
}

.owner-split .owner-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.owner-split .owner-image-overlay h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 5px;
}

.owner-split .owner-image-overlay p {
  color: #ccc;
  font-size: 14px;
}

.owner-split .owner-text {
  flex: 1;
  padding: 60px 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-split .owner-text h2 {
  color: #fff;
}

.owner-split .owner-text p {
  color: #ccc;
  line-height: 1.9;
}

/* Marketplace hero ad */
.marketplace-hero-ad {
  background: #000;
}

.marketplace-hero-link {
  display: block;
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.marketplace-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.marketplace-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3) 100%);
}

.marketplace-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px;
  max-width: 700px;
}

.marketplace-hero-content h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Impact', 'Arial Black', sans-serif;
  margin-bottom: 30px;
}

.mh-white {
  color: #fff;
}

.mh-red {
  color: #E21C21;
}

.mh-red-fade {
  color: #E21C21;
  opacity: 0.5;
}

.marketplace-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.marketplace-bullets li {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketplace-bullets .bullet-bold {
  color: #fff;
  font-weight: 700;
}

.bullet-check {
  color: #E21C21;
  font-size: 18px;
  font-weight: 700;
}

.marketplace-cta-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.marketplace-cta-center .btn-red {
  font-size: 18px;
  padding: 18px 40px;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .marketplace-hero-content {
    padding: 40px 25px;
  }
  .marketplace-hero-content h2 {
    font-size: 36px;
  }
  .marketplace-hero-link {
    min-height: 400px;
  }
  .marketplace-cta-center .btn-red {
    font-size: 14px;
    padding: 14px 25px;
  }
}

/* Pricing section */
.pricing-section {
  padding: 60px 40px;
  background: #f5f5f5;
}

.pricing-section .container {
  max-width: 900px;
}

.pricing-section h2 {
  color: #111;
}

.pricing-section p {
  color: #444;
  font-size: 17px;
}

.price-tag {
  font-size: 36px;
  font-weight: 900;
  color: #E21C21;
  margin: 15px 0;
}

@media (max-width: 968px) {
  .owner-split {
    flex-direction: column;
  }

  .owner-split .owner-image {
    min-height: 350px;
  }

  .owner-split .owner-text {
    padding: 40px 20px;
  }
}

/* ===== OWNER MESSAGE ===== */
.owner-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 40px;
}

.owner-section .container {
  max-width: 900px;
}

.owner-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.owner-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #ccc;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  display: flex;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 0 0 350px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E21C21;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-circle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.contact-info-item a {
  color: #E21C21;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E21C21;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #c41518;
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.contact-form-section {
  flex: 1;
}

.contact-form-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E21C21;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input[type="file"] {
  padding: 10px;
  border: 2px dashed #ddd;
  cursor: pointer;
}

.btn-submit {
  display: inline-block;
  background: #E21C21;
  color: #fff;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #c41518;
}

/* ===== IMAGE GALLERY (Consignments) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 60px 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== NFA PAGE ===== */
.nfa-announcement {
  display: flex;
  align-items: stretch;
}

.nfa-announcement .split-image {
  flex: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  min-height: 500px;
}

.nfa-announcement .split-content {
  flex: 1;
  background: #111;
  color: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nfa-announcement .split-content h2 {
  font-size: 30px;
  line-height: 1.3;
}

.nfa-announcement .split-content p {
  color: #ccc;
  line-height: 1.8;
}

.nfa-info {
  padding: 80px 40px;
  background: #fff;
}

.nfa-info .container {
  max-width: 900px;
}

.nfa-info h2 {
  color: #111;
}

.nfa-info p {
  color: #444;
}

.nfa-cta {
  text-align: center;
  padding: 60px 40px;
  background: #111;
}

.nfa-cta h2 {
  color: #fff;
  font-size: 32px;
}

.nfa-cta .btn-red {
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  color: #999;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid #222;
}

.footer a {
  color: #E21C21;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transition: right 0.3s;
    padding: 20px;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .phone-btn {
    display: none;
  }

  .header {
    padding: 10px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-icons {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .section-split {
    flex-direction: column;
  }

  .section-split .split-image {
    min-height: 250px;
  }

  .nfa-announcement {
    flex-direction: column;
  }

  .contact-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .contact-info {
    flex: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .logo img {
    height: 55px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
