/* ==========================================================================
   THE WHACK SHACK — Shared Design System
   Duck Blind Manufacturer | Thida, AR
   High-Energy Outdoor Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --green-deep: #0a1a0e;
  --green-dark: #0d2214;
  --green-mid: #122e1b;
  --green-accent: #1a3d24;
  --orange: #ff6b00;
  --orange-light: #ff8c2a;
  --orange-glow: rgba(255, 107, 0, 0.3);
  --white: #ffffff;
  --white-dim: #c8ceca;
  --black: #050a07;

  --font-headline: 'Teko', sans-serif;
  --font-body: 'Exo 2', sans-serif;

  --nav-height: 80px;
  --container-max: 1300px;
  --radius-sm: 2px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--green-deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION (Fixed)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 26, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  padding: 0.6rem 2.5rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

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

.nav-links a {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--orange);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-phone {
  color: var(--orange) !important;
  font-weight: 600;
}

.nav-phone::after {
  display: none !important;
}

.nav-phone:hover {
  color: var(--orange-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--green-dark);
  border-left: 3px solid var(--orange);
  padding: 100px 2rem 2rem;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--orange);
  padding-left: 0.5rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 7, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   4. BUTTONS (All with Skew Fix — NO clip-path)
   -------------------------------------------------------------------------- */

/* Primary CTA */
.btn-cta {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  background: var(--orange);
  padding: 1rem 3rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  transform: skewX(-3deg);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
  cursor: pointer;
}

.btn-cta span {
  display: inline-block;
  transform: skewX(3deg);
}

.btn-cta:hover {
  background: var(--orange-light);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

/* Secondary */
.btn-secondary {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  background: transparent;
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  transform: skewX(-3deg);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-secondary span {
  display: inline-block;
  transform: skewX(3deg);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--green-deep);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

/* Dark — used on orange background sections */
.btn-dark {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--green-deep);
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--green-deep);
  transform: skewX(-3deg);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-dark span {
  display: inline-block;
  transform: skewX(3deg);
}

.btn-dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--orange);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* Outline */
.btn-outline {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  background: transparent;
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  transform: skewX(-3deg);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
  cursor: pointer;
}

.btn-outline span {
  display: inline-block;
  transform: skewX(3deg);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (Home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .hero-bg {
    background-position: 23% center;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 14, 0.6) 0%,
    rgba(10, 26, 14, 0.4) 40%,
    rgba(10, 26, 14, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 2rem;
  padding-bottom: 3rem;
}

.hero-content .btn-cta {
  margin-top: 2.5rem;
}

.hero-stack {
  font-family: var(--font-headline);
  line-height: 0.85;
  text-transform: uppercase;
  margin-top: 5rem;
}

.hero-stack .line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-stack .line.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-stack .line.orange {
  color: var(--orange);
  text-shadow:
    0 0 40px rgba(255, 107, 0, 0.4),
    0 0 80px rgba(255, 107, 0, 0.15);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white-dim);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-wrap {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.hero-cta-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero diagonal stripe — removed */

/* --------------------------------------------------------------------------
   6. PAGE HERO (Subpage Banner)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 14, 0.75) 0%,
    rgba(10, 26, 14, 0.6) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.page-hero .breadcrumb {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-top: 1rem;
  letter-spacing: 1px;
}

.page-hero .breadcrumb a {
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
  color: var(--orange);
}

.page-hero .breadcrumb .separator {
  color: var(--orange);
  margin: 0 0.5rem;
}

/* --------------------------------------------------------------------------
   7. INTRO BAR
   -------------------------------------------------------------------------- */
.intro-bar {
  background: var(--black);
  padding: 2.5rem 2rem;
  text-align: center;
}

.intro-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.intro-stat {
  flex: 1;
  padding: 1rem 2rem;
  border-right: 2px solid var(--orange);
}

.intro-stat:last-child {
  border-right: none;
}

.intro-stat .stat-number {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.intro-stat .stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   8. PRODUCT SECTIONS (Pit/Skid Blinds)
   -------------------------------------------------------------------------- */
.product-section {
  position: relative;
  padding: 6rem 2rem;
  background: var(--green-dark);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.product-section:nth-child(even) {
  background: var(--green-mid);
}

.product-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.product-img-wrap {
  width: 55%;
  position: relative;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-img-wrap:hover::after {
  border-color: var(--orange-light);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.product-text {
  flex: 1;
}

.section-label {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  margin-bottom: 2.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-dim);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

/* Alternating layout */
.product-section--alt .product-inner {
  flex-direction: row-reverse;
}

/* --------------------------------------------------------------------------
   9. FEATURES GRID
   -------------------------------------------------------------------------- */
.features-section {
  padding: 6rem 2rem;
  background: var(--green-deep);
}

.features-section .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--green-dark);
  border-top: 3px solid var(--orange);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.15);
}

.feature-card .card-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.feature-card .card-icon img {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. GALLERY
   -------------------------------------------------------------------------- */
.gallery {
  position: relative;
  padding: 6rem 2rem;
  background: var(--green-mid);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.gallery .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.15);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   11. BOLD STATEMENT SECTION
   -------------------------------------------------------------------------- */
.bold-statement {
  background: var(--orange);
  padding: 5rem 2rem;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  text-align: center;
}

.bold-statement p {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   12. SERVICE AREA SECTION
   -------------------------------------------------------------------------- */
.service-area {
  padding: 5rem 2rem;
  background: var(--green-dark);
}

.service-area .section-label {
  text-align: center;
  margin-bottom: 1rem;
}

.service-area .section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.city-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.city-tag {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.4rem 1rem;
}

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 2rem;
  background: var(--green-deep);
}

.faq-section .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 107, 0, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--orange);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 5rem 2rem;
  background: var(--green-dark);
}

.contact-section .section-label {
  margin-bottom: 2rem;
}

.contact-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #0d1a10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(200, 206, 202, 0.4);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b00' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}

/* Honeypot */
.form-group.hp {
  display: none;
}

/* Form messages */
.form-message {
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-left: 3px solid;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(26, 61, 36, 0.5);
  border-color: #34d058;
  color: #34d058;
}

.form-message.error {
  display: block;
  background: rgba(61, 26, 26, 0.5);
  border-color: #ff4444;
  color: #ff4444;
}

/* --------------------------------------------------------------------------
   15. CONTACT INFO BLOCK
   -------------------------------------------------------------------------- */
.contact-info {
  padding-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}

.contact-info-item .info-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.contact-info-item .info-text strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info .phone-large {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .phone-large:hover {
  color: var(--orange-light);
}

/* --------------------------------------------------------------------------
   16. IMAGE LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 7, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--orange-light);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  background: rgba(10, 26, 14, 0.6);
  border: 1px solid rgba(255, 107, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 10000;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   17. STICKY MOBILE CALL BAR
   -------------------------------------------------------------------------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--orange);
  text-align: center;
  padding: 0.85rem 1rem;
  z-index: 900;
}

.mobile-call-bar a {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   18. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-light);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--black);
  padding: 5rem 2rem 1.5rem;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  margin-top: -2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-dim);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover {
  color: var(--orange);
  padding-left: 0.4rem;
}

.footer-phone {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: text-shadow 0.3s ease;
}

.footer-phone:hover {
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.footer-email {
  font-size: 0.9rem;
  color: var(--white-dim);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--orange);
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--white-dim);
  opacity: 0.6;
}

.footer-bar {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0.4;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
    margin: 0 auto;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
    display: block;
  }
}

/* --------------------------------------------------------------------------
   20. ANIMATIONS / KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.6), 0 0 80px rgba(255, 107, 0, 0.2);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll animation states */
[data-anim] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim="fade-up"] {
  transform: translateY(40px);
}

[data-anim="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="slide-left"] {
  transform: translateX(-80px);
}

[data-anim="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-anim="slide-right"] {
  transform: translateX(80px);
}

[data-anim="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-anim="scale-in"] {
  transform: scale(0.8);
}

[data-anim="scale-in"].visible {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE — 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .product-inner {
    flex-direction: column;
  }

  .product-section--alt .product-inner {
    flex-direction: column;
  }

  .product-img-wrap {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-grid {
    gap: 0.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* --------------------------------------------------------------------------
   22. RESPONSIVE — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .intro-bar-inner {
    flex-direction: column;
    gap: 0;
  }

  .intro-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    padding: 1rem 0;
  }

  .intro-stat:last-child {
    border-bottom: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

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

  .city-grid {
    gap: 0.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-bar {
    justify-content: center;
    text-align: center;
  }

  .mobile-call-bar {
    display: block;
  }

  .back-to-top {
    bottom: 5.5rem;
  }

  .bold-statement {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding: 4rem 1.5rem;
  }

  .product-section {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: 4rem 1.5rem;
  }

  .page-hero {
    min-height: 35vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE — 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .nav.scrolled {
    padding: 0.5rem 1rem;
  }

  .nav-logo img {
    height: 38px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn-cta {
    font-size: 1.2rem;
    padding: 0.85rem 2rem;
    letter-spacing: 2px;
  }

  .btn-secondary,
  .btn-dark,
  .btn-outline {
    font-size: 1.1rem;
    padding: 0.75rem 1.8rem;
  }

  .section-label {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .city-grid {
    gap: 0.4rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .contact-info .phone-large {
    font-size: 1.8rem;
  }

  .gallery {
    clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%);
  }
}

/* --------------------------------------------------------------------------
   24. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.text-orange {
  color: var(--orange);
}

.text-center {
  text-align: center;
}

.section-angled {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}

.section-angled-reverse {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   25. PAGE HERO (Product / Interior Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem 3rem;
  margin-top: var(--nav-height);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 7, 0.7) 0%, rgba(10, 26, 14, 0.85) 100%);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.breadcrumb span {
  margin: 0 0.4rem;
  color: var(--white-dim);
}

/* --------------------------------------------------------------------------
   26. PRODUCT GRID (Product Page Layout)
   -------------------------------------------------------------------------- */
.product-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.product-image {
  width: 55%;
  position: relative;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover::after {
  border-color: var(--orange-light);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.product-info {
  flex: 1;
}

/* --------------------------------------------------------------------------
   27. FEATURE ICON
   -------------------------------------------------------------------------- */
.feature-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   28. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--green-mid);
}

.gallery-section .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid--masonry {
  grid-auto-rows: 300px;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   29. SPECS SECTION
   -------------------------------------------------------------------------- */
.specs-section {
  padding: 6rem 2rem;
  background: var(--green-dark);
}

.specs-section .section-label {
  text-align: center;
  margin-bottom: 1rem;
}

.specs-section .section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.specs-table {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.specs-table thead th {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-deep);
  background: var(--orange);
  padding: 1rem 1.5rem;
  text-align: left;
}

.specs-table tbody td {
  padding: 1rem 1.5rem;
  color: var(--white-dim);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  background: var(--green-deep);
}

.specs-table tbody tr:hover td {
  background: var(--green-mid);
}

.specs-table tbody td:first-child {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   30. CONTACT CTA SECTION
   -------------------------------------------------------------------------- */
.contact-cta {
  padding: 6rem 2rem;
  background: var(--green-deep);
}

.contact-cta .section-label {
  margin-bottom: 1.5rem;
}

.contact-cta-phone {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.contact-cta-phone:hover {
  color: var(--orange-light);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Product pages additions
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .product-grid {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
  }

  .gallery-grid--masonry {
    grid-auto-rows: 250px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid--masonry {
    grid-auto-rows: 220px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .specs-table thead th,
  .specs-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   26. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .nav,
  .hamburger,
  .mobile-menu,
  .mobile-overlay,
  .mobile-call-bar,
  .back-to-top,
  .lightbox-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero, .page-hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* --------------------------------------------------------------------------
   CONTACT PAGE — Additional Styles
   -------------------------------------------------------------------------- */
.page-hero--short {
  min-height: 35vh;
}

.contact-page-section {
  padding: 5rem 2rem;
  background: var(--green-dark);
}

.contact-page-section .section-label {
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}

.contact-info-wrap h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info-wrap a {
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.contact-info-wrap a:hover {
  color: var(--orange);
}

.contact-info-wrap p {
  color: var(--white-dim);
}

.contact-phone-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-phone-cta p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.contact-phone-big {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-phone-big:hover {
  color: var(--orange-light);
}

/* Field validation errors */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff4444;
}

.field-error {
  display: block;
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   PRICING CARDS
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: var(--green-dark);
  border: 2px solid rgba(255, 107, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.15);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card-badge {
  background: var(--orange);
  color: var(--green-deep);
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 0.4rem 1rem;
}

.pricing-card-header {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.pricing-card-header h3 {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pricing-card-price {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.pricing-card-price--call {
  font-size: 1.75rem;
  letter-spacing: 1px;
}

.pricing-card-body {
  padding: 1.5rem;
}

.pricing-card-body .feature-list {
  margin-bottom: 1.5rem;
}

.pricing-card-body .feature-list li {
  font-size: 0.95rem;
  padding: 0.4rem 0 0.4rem 1.5rem;
}

.pricing-card-body .btn-cta,
.pricing-card-body .btn-secondary {
  width: 100%;
  text-align: center;
  display: block;
}

.pricing-notes {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pricing-notes a {
  text-decoration: none;
  font-weight: 600;
  transition: text-shadow 0.3s;
}

.pricing-notes a:hover {
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

/* Accessories Section */
.accessories-section {
  padding: 4rem 0;
  background: var(--green-dark);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.accessory-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.accessory-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.accessory-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.accessory-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.accessory-price--call {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.accessory-card p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  margin-top: -3%;
  position: relative;
}

.map-section iframe {
  filter: grayscale(0.5) contrast(1.1);
}
