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

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #050505;
  border-bottom: 1px solid #2b2b2b;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.brand:visited {
  color: #fff;
}

.brand:hover {
  color: #fff;
  text-decoration: none;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 48px;
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.top-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background: #e9e9e9;
  color: #111;
  padding: 28px 24px 36px;
}

.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* Left Hero Column */
.hero-left-column {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  padding: 14px;
  box-shadow: -10px 10px 0 #000;
}

/* Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%; 
  overflow: hidden;
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Left actions under homepage image */
.hero-left-actions {
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-big-phone {
  color: #000;
  text-decoration: none;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.hero-big-phone:hover {
  text-decoration: underline;
}

.hero-side-button {
  width: 100%;
  max-width: 420px;
  min-height: 58px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  padding: 0 20px;
  transition: all 0.2s ease;
}

.hero-side-button:hover {
  background: #fff;
  color: #000;
  border: 3px solid #000;
  transform: scale(1.05);
}

.about-toggle .dropdown-icon {
  font-size: 20px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-dropdown-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding-top: 0;
}

.about-dropdown-panel.open {
  max-height: 500px;
  padding-top: 8px;
}

.about-dropdown-box {
  width: 100%;
  background: #fff;
  color: #111;
  border: 3px solid #6d0000;
  padding: 22px;
  font-size: 18px;
  line-height: 1.6;
}

/* Right side */
.hero-right {
  flex: 1;
  min-width: 0;
}

.hero-right h1 {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin-top: 1px;
  margin-bottom: 5px;
}

.hero-subtext {
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Service list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

/* Dropdown wrapper */
.service-dropdown-wrap {
  width: 88%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Black service bars */
.service-row {
  background: #000;
  color: #fff;
  text-decoration: none;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 38px;
  border: 3px solid #000;
  cursor: pointer;
  width: 88%;
  transition: all 0.2s ease;
  transform-origin: center;
}

.service-row:hover {
  background: #fff;
  color: #000;
  border: 3px solid #000;
  transform: scale(1.05);
  box-shadow: -6px 10px 18px rgba(0,0,0,0.35);
}

.service-dropdown-toggle {
  width: 100%;
}

.service-text {
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.dropdown-icon {
  font-size: 24px;
  margin-left: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-icon.rotated {
  transform: rotate(180deg);
}

/* Dropdown panels */
.service-dropdown-panel {
  width: 100%;
  max-height: 0;
  overflow-x: visible;
  overflow-y: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding-top: 0;
}

.service-dropdown-panel.open {
  max-height: 1200px;
  overflow-x: visible;
  overflow-y: visible;
  padding-top: 18px;
}

/* Audio/Video/etc grid cards */
.audio-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px 10px 10px 10px;
}

.audio-card {
  width: 200px;
  height: 200px;
  background: #000;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 2px solid #111;
  flex: 0 0 200px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center center;
}

.audio-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: -6px 10px 18px rgba(0, 0, 0, 0.45);
  z-index: 5;
}

.audio-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background: #111;
}

.audio-card-label {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  font-size: 16px;
  color: #fff;
}

.gallery-title-bar {
  max-width: 1400px;
  margin: 0 auto 18px auto;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  text-align: center;
}

.gallery-title {
  color: #cbaf87;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
}

.gallery-title:hover {
  text-decoration: underline;
}

.gallery-section {
  background: #000;
  padding: 0 24px 40px;
  overflow: hidden;
  cursor: default;
  user-select: none;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}

.gallery-img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-section {
    padding: 0 10px 30px;
  }

  .gallery-img {
    width: 260px;
    height: 360px;
  }
}

/* Bottom Bar */
.bottom-bar {
  background: #050505;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.bottom-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.bottom-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.bottom-link:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1200px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-left-column {
    flex: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-image-frame {
    width: 100%;
  }

  .hero-right h1 {
    font-size: 40px;
  }

  .service-dropdown-wrap,
  .service-row {
    width: 100%;
  }

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

  .gallery-img {
    height: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .top-contact {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    text-align: center;
  }

  .hero-section {
    padding: 20px 10px 30px;
  }

  .hero-right h1 {
    font-size: 30px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-big-phone {
    font-size: 30px;
    text-align: center;
  }

  .hero-side-button {
    font-size: 20px;
    min-height: 52px;
  }

  .service-row {
    min-height: 58px;
    padding: 0 18px;
  }

  .service-text {
    font-size: 20px;
    white-space: normal;
  }

  .bottom-contact {
    gap: 18px;
  }

  .audio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }

  .audio-card {
    width: calc(33.33% - 6px);
    height: 200px;
    flex: 0 0 calc(33.33% - 6px);
  }
}

/* Quote Page */
.quote-page {
  background: #e9e9e9;
  color: #111;
  min-height: 100vh;
}

.quote-hero {
  padding: 40px 24px 20px;
}

.quote-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.quote-hero p {
  font-size: 18px;
  color: #444;
}

.quote-form-section {
  padding: 10px 24px 50px;
}

.quote-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-section-title {
  max-width: 820px;
  width: 100%;
  margin: 6px auto 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  text-align: left;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

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

.quote-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.field-group label {
  font-size: 15px;
  color: #6f8194;
  font-weight: 500;
  text-align: left;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #f7f7f7;
  color: #111;
  font-size: 16px;
  padding: 7px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: #888;
  background: #fff;
}

.field-group textarea {
  resize: vertical;
  min-height: 110px;
}

.time-field {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 8px;
  width: 100%;
}

.time-field input,
.time-field select {
  width: 100%;
}

.quote-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.quote-submit-button {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 20px;
  padding: 14px 34px;
  min-width: 220px;
  transition: all 0.2s ease;
}

.quote-submit-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.03);
}

.quote-success-message {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: #2a7f2a;
  font-weight: 600;
}

.quote-turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .quote-hero h1 {
    font-size: 34px;
  }

  .quote-hero p {
    font-size: 16px;
  }

  .quote-row-2,
  .quote-row-3 {
    grid-template-columns: 1fr;
  }

  .time-field {
    grid-template-columns: 1fr 80px;
  }

  .field-group label {
    font-size: 16px;
  }

  .field-group input,
  .field-group textarea,
  .field-group select {
    font-size: 16px;
    padding: 10px 13px;
  }

  .quote-submit-button {
    width: 100%;
    max-width: 320px;
  }
}

/* Equipment Detail Pages */
.equipment-page {
  background: #e9e9e9;
  color: #111;
  min-height: 100vh;
}

.equipment-hero {
  padding: 40px 24px 20px;
}

.equipment-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.equipment-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.equipment-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}

.equipment-list-section {
  padding: 20px 24px 30px;
}

.equipment-list-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.equipment-item {
  background: #fff;
  border: 2px solid #111;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 20px;
  align-items: center;
}

.equipment-item-image-wrap {
  width: 100%;
}

.equipment-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #111;
}

.equipment-item-content h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.equipment-item-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.equipment-table-section {
  padding: 0 24px 50px;
}

.equipment-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-table-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.equipment-table-scroll {
  overflow-x: auto;
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 2px solid #111;
}

.equipment-table th,
.equipment-table td {
  border: 1px solid #111;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 17px;
  line-height: 1.5;
}

.equipment-table th {
  background: #000;
  color: #fff;
  font-size: 18px;
}

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

  .equipment-item-image {
    height: 220px;
  }

  .equipment-hero h1 {
    font-size: 34px;
  }

  .equipment-intro {
    font-size: 17px;
  }

  .equipment-item-content h2 {
    font-size: 26px;
  }

  .equipment-item-content p,
  .equipment-table th,
  .equipment-table td {
    font-size: 16px;
  }
}

.quote-cta-section {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px 0;
}

.quote-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 20px;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-decoration: none;
  border: 3px solid #000;
  transition: all 0.2s ease;
}

.quote-cta-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}