@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap");

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

:root {
  --bg: #0a0a0a;
  --bg-1: #131313;
  --bg-2: #1c1c1c;
  --bg-3: #252525;
  --orange: #c47e15;
  --orange-light: #eeb413;
  --orange-pale: #e0ae08;
  --orange-glow: rgba(201, 147, 30, 0.12);
  --orange-border: rgba(201, 141, 30, 0.32);
  --white: #ffffff;
  --text: #e8e8e8;
  --muted: #7a7a7a;
  --font-h: "Oswald", sans-serif;
  --font-b: "Open Sans", sans-serif;
  --radius: 4px;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  --shadow-o: 0 4px 28px rgba(201, 106, 30, 0.22);
  --transition: 0.3s ease;
  --max-w: 1200px;
  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--orange-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--orange-pale);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
}
.section-alt {
  background-color: var(--bg-1);
}

/* ── NAV ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--orange-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-name span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--orange-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-light);
  background: var(--orange-glow);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--orange-border);
  z-index: 999;
  padding: 16px 24px 24px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav a:hover {
  color: var(--orange-light);
  background: var(--orange-glow);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  box-shadow: var(--shadow-o);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange-light);
  border-color: var(--orange-light);
}
.btn-outline:hover {
  background: var(--orange-glow);
  color: var(--orange-pale);
  border-color: var(--orange-pale);
  transform: translateY(-2px);
}

/* ── HOME HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/FB_IMG_1777772337612.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 106, 30, 0.07) 0%,
    transparent 55%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange-light);
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.03;
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--orange-light);
  font-style: normal;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 42px;
  max-width: 510px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ── SERVICE STRIP ───────────────────────────────────── */
.services-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 24px;
  gap: 16px;
  transition: background var(--transition);
  border-right: 1px solid var(--bg-3);
}
.service-item:last-child {
  border-right: none;
}
.service-item:hover {
  background: var(--orange-glow);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.service-item h3 {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 span {
  color: var(--orange-light);
}
.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--orange);
  margin: 18px auto 0;
}

/* ── VALUE CARDS ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 42px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card:hover {
  border-color: var(--orange);
  background: var(--bg-3);
  box-shadow: var(--shadow-o);
  transform: translateY(-5px);
}
.value-icon {
  font-size: 38px;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-ph {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-ph {
  background: linear-gradient(135deg, var(--bg-3), rgba(201, 106, 30, 0.1));
}
.gallery-ph-icon {
  font-size: 38px;
  opacity: 0.25;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-section {
  background: var(--bg-1);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 106, 30, 0.08) 0%,
    transparent 65%
  );
}
.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 42px;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 70px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--orange-border);
  text-align: center;
}
.page-hero-tag {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-frame::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--orange-border);
  border-radius: var(--radius);
  z-index: -1;
}
.about-photo-ph {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  border-radius: var(--radius);
}
.about-text .section-tag {
  display: block;
  text-align: left;
}
.about-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-text h2 span {
  color: var(--orange-light);
}
.about-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--orange-border);
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── CONTACT CARDS ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--orange);
  background: var(--bg-3);
  box-shadow: var(--shadow-o);
}
.contact-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.contact-card h4 {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 10px;
}
.contact-card p,
.contact-card a {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}
.contact-card a:hover {
  color: var(--orange-light);
}

/* ── FORMS ───────────────────────────────────────────── */
.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.form-card {
  background: var(--bg-1);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 52px;
}
.form-group {
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201, 106, 30, 0.1);
}
.form-group select {
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%23E8874A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--bg-2);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 14px;
  color: var(--text);
}
.checkbox-label:hover {
  border-color: var(--orange-border);
  background: var(--bg-3);
}
.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label.selected {
  border-color: var(--orange);
  background: var(--orange-glow);
  color: var(--white);
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  font-size: 52px;
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--font-h);
  font-size: 28px;
  color: var(--orange-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--muted);
}

/* ── EQUIPMENT ───────────────────────────────────────── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 88px;
}
.equipment-card {
  background: var(--bg-2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.equipment-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-o);
  transform: translateY(-5px);
}
.equipment-photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.equipment-card:hover .equipment-photo img {
  transform: scale(1.05);
}
.equipment-photo {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--bg-3);
}
.equipment-photo-icon {
  font-size: 52px;
  opacity: 0.3;
}
.equipment-info {
  padding: 28px;
}
.equipment-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.equipment-spec {
  font-size: 13px;
  color: var(--orange-light);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.equipment-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.equipment-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.equipment-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.equipment-features li::before {
  content: "▸";
  color: var(--orange);
  font-size: 10px;
}

/* ── DIVIDER ─────────────────────────────────────────── */
.orange-divider {
  width: 100%;
  height: 1px;
  background: var(--orange-border);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--orange-border);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.footer-company-name {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}
.footer-company-name span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  color: var(--orange-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 250px;
}
.footer-verse {
  font-size: 13px;
  color: var(--orange-light);
  font-style: italic;
  opacity: 0.75;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--orange-light);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.footer-contact-icon {
  color: var(--orange-light);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-copy span {
  color: var(--orange-light);
}

/* ── FADE-IN ANIMATIONS ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fd1 {
  transition-delay: 0.1s;
}
.fd2 {
  transition-delay: 0.2s;
}
.fd3 {
  transition-delay: 0.3s;
}
.fd4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-item {
    border-right: none;
    border-bottom: 1px solid var(--bg-3);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: span 2;
  }
  .gallery-ph {
    min-height: 220px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-card {
    padding: 32px 22px;
  }
  .section {
    padding: 68px 0;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
