:root {
  --yellow: #ffc400;
  --yellow-deep: #f29f05;
  --ink: #080a0f;
  --text: #f7f8fb;
  --muted: #b9c0ce;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--yellow);
  color: #111;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.section-head {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(270deg, var(--yellow), transparent);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.65rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 925;
}

h3 {
  font-size: 1.25rem;
  font-weight: 850;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #101014;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  box-shadow: 0 16px 38px rgba(255, 196, 0, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 46px rgba(255, 196, 0, 0.36);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 196, 0, 0.45);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(255, 196, 0, 0.23);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a,
.nav-links button {
  color: rgba(247, 248, 251, 0.82);
  background: transparent;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a:focus-visible,
.nav-links button:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px 0 60px;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.95) 0%, rgba(5, 7, 11, 0.78) 48%, rgba(5, 7, 11, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 10, 15, 0) 72%, var(--ink) 100%),
    url("../img/hero-banner.webp") center / cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: 48px;
}

.hero-copy p {
  max-width: 690px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-title {
  font-size: 60px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 29px;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 248, 251, 0.9);
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.meta-pill i {
  color: var(--yellow);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(17, 21, 31, 0.82), rgba(17, 21, 31, 0.52));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.dispatch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dffb2;
  font-size: 0.88rem;
  font-weight: 850;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #7dffb2;
  box-shadow: 0 0 0 0 rgba(125, 255, 178, 0.55);
  animation: pulse 1.8s infinite;
}

.dispatch-list {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.dispatch-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dispatch-row i,
.service-icon,
.why-icon,
.contact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.18);
}
@media (max-width: 768px) {
  .dispatch-row i,
  .service-icon,
  .why-icon,
  .contact-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.dispatch-row strong {
  display: block;
  font-size: 0.98rem;
}

.dispatch-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-callout {
  padding: 18px;
  background: rgba(255, 196, 0, 0.1);
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: var(--radius);
}

.card-callout strong {
  display: block;
  color: var(--yellow);
  font-size: 2.1rem;
  line-height: 1;
}

.services {
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.12), transparent 30%),
    var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.why-card,
.contact-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  overflow: hidden;
}

.service-card {
  background: #0f141c;
  padding: 30px;
  border-radius: 16px;
  animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.service-card:nth-child(1) {
  animation-delay: 0s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.8s;
}
.service-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover,
.why-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 0, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
}

.service-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.service-icon,
.why-icon {
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.service-card h3,
.why-card h3 {
  margin-bottom: 10px;
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #0b0e15;
}

.about-title,
.testi-title,
.gallery-title,
.form-title {
  padding-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.04), rgba(8, 10, 15, 0.86)),
    url("../img/about-12.webp") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.experience-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(250px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 10, 15, 0.76);
  backdrop-filter: blur(16px);
}

.experience-badge strong {
  display: block;
  color: var(--yellow);
  font-size: 3.35rem;
  line-height: 0.95;
  font-weight: 950;
}

.about-copy p+p {
  margin-top: 16px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(247, 248, 251, 0.92);
  font-weight: 750;
}

.about-points i {
  color: var(--yellow);
}

.why {
  background: var(--ink);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cta {
  padding: 84px 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.94), rgba(8, 10, 15, 0.74)),
    url("../img/hero-banner.webp") center / cover;
  border-block: 1px solid var(--line);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* justify-content: flex-end; */
}

.contact {
  background:
    radial-gradient(circle at bottom right, rgba(255, 196, 0, 0.11), transparent 32%),
    #0b0e15;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-top: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-card strong,
.contact-card a {
  color: var(--text);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 36px 0;
  background: #06070b;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--yellow);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: grid;
}

.modal-dialog {
  width: min(100%, 560px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 25, 36, 0.98), rgba(10, 13, 20, 0.98));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.56);
  animation: modalIn 0.28s ease both;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.modal-head p {
  margin-top: 8px;
  font-size: 0.96rem;
}

.modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.modal-body {
  padding: 24px;
}

.emergency-options {
  display: grid;
  gap: 12px;
}

.emergency-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.emergency-line strong {
  display: block;
}

.emergency-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(247, 248, 251, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
  background: rgba(255, 255, 255, 0.095);
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2500;
  display: none;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 520px);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #101014;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.36);
  font-weight: 850;
  text-align: center;
}

.toast.show {
  display: block;
  animation: toastIn 0.25s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .reveal.in-view,
  .field input,
  .field select,
  .field textarea{
    text-align: center;
    align-items: center;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(125, 255, 178, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(125, 255, 178, 0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1020px) {
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 12, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links button {
    width: 100%;
    text-align: left;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  /* .cta-actions {
    justify-content: flex-start;
  } */
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .hero-actions,
  .contact-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

  .hero-card,
  .contact-panel,
  .service-card,
  .why-card {
    padding: 22px;
  }

  .about-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .emergency-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
  background: #05070b;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  padding: 70px 0;
}

.footer-brand p {
  margin: 16px 0;
}

.footer-call {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-call a {
  font-weight: 700;
  color: var(--yellow);
}

.footer-links-col h4,
.footer-form h4 {
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-links-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links-col a {
  color: var(--muted);
}

.footer-links-col a:hover {
  color: var(--yellow);
}

/* FORM */
.footer-form form {
  display: grid;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: var(--radius);
  color: var(--text);
}

.footer-form textarea {
  min-height: 90px;
}

/*=================================
  FOOTER BOTTOM 
  ================================= */

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-social a:hover {
  background: var(--yellow);
  color: #111;
}

@media (max-width: 768px) {

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

}

/* ================================== 
  Footer Top 
  ================================== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-map h4 {
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-map iframe {
  border: 1px solid var(--line);
}

.map-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-form {
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.08), transparent 30%),
    #0b0e15;
}

.faq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.faq-left {
  position: sticky;
  top: 100px; 
  align-self: start;
}

@media (max-width: 768px) {
  .faq-left {
    position: static;
    top: auto;
  }
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
  padding: 14px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.form-grid-2 .full {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .faq-form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

select {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  appearance: none;
  outline: none;
}

select option {
  background: #0b0e15;
  color: #fff;
}

select option:hover,
select option:checked {
  background: #ffc400;
  color: #000;
}

/*==================================== 
  DROPDOWN 
  ==================================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #0b0e15;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #ffc400;
  color: #000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* FIX CLICK AREA */
.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* MOBILE STYLE */
@media (max-width: 900px) {

  .dropdown-menu {
    display: none;
    padding-left: 10px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-icon {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.08), transparent 35%),
    #0b0e15;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* zoom effect */
.gallery-item:hover img {
  transform: scale(1.12);
}

/* overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

/* responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/*=======================================
  Testimonial
  ======================================== */

.testimonials {
  background: radial-gradient(circle at top, rgba(255, 196, 0, 0.12), transparent 40%), #0b0e15;
  overflow: hidden;
}

.testimonial-carousel {
  overflow: hidden;
  margin-top: 40px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: scrollLeft 18s linear infinite;
}

.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 380px;
  max-width: 380px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--yellow);
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.25;
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.testimonial-user strong {
  display: block;
  color: var(--text);
  font-weight: 850;
}

.testimonial-user span {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
}

/* 🔥 TRUE INFINITE LOOP ANIMATION */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }
}

/*==================================
   Floating Icon 
  ================================== */
.floating-contact {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Button style */
.float-btn {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #111;
  background: var(--yellow);
  text-decoration: none;
  overflow: hidden;
  padding: 0 14px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Icon */
.float-btn i {
  font-size: 20px;
  min-width: 22px;
}

/* Hidden text */
.float-btn span {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s ease;
  font-weight: 700;
}

/* Hover expand effect */
.float-btn:hover {
  width: 140px;
  border-radius: 30px;
}

/* Show text on hover */
.float-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Unique floating animation */
.float-btn {
  animation: floatUpDown 3s ease-in-out infinite;
}

.float-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.float-btn:nth-child(3) {
  animation-delay: 0.4s;
}

.float-btn:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Individual colors */
.float-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.float-btn.phone {
  background: #ffc400;
}

.float-btn.email {
  background: #3b82f6;
  color: #fff;
}

.float-btn.location {
  background: #ef4444;
  color: #fff;
}

@media (max-width: 768px) {
  .floating-contact {
    top: auto;
    bottom: 18px;
    left: 14px;
    transform: none;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    text-align: center;
    align-items: center;
    padding: 0 12px;

  }

  .float-btn:hover {
    width: 120px;
  }
}