:root {
  --white: #ffffff;
  --soft-white: #f8fafc;
  --cream: #fbf7ef;
  --dark: #07111f;
  --navy: #0b1f3a;
  --blue: #123b70;
  --gold: #c8972b;
  --gold-2: #f1c96b;
  --text: #1f2937;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(2, 8, 23, 0.12);
  --shadow-soft: 0 14px 35px rgba(2, 8, 23, 0.08);
  --radius: 26px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section.small {
  padding: 75px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: 1.45rem;
  font-weight: 800;
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: #475569;
  max-width: 690px;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  box-shadow: 0 18px 35px rgba(200, 151, 43, 0.28);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(200, 151, 43, 0.38);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(7, 17, 31, 0.24);
}

.btn-dark:hover {
  transform: translateY(-4px);
  background: var(--navy);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.btn-light:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-4px);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(200, 151, 43, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(18, 59, 112, 0.22),
      transparent 32%
    ),
    #fff;
  display: grid;
  place-items: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.loader-shield {
  width: 90px;
  height: 100px;
  background: linear-gradient(145deg, var(--navy), var(--dark));
  clip-path: polygon(50% 0%, 88% 13%, 88% 54%, 50% 100%, 12% 54%, 12% 13%);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow);
  animation: pulseShield 1.5s infinite ease-in-out;
}

.loader-shield::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  clip-path: polygon(50% 0%, 88% 13%, 88% 54%, 50% 100%, 12% 54%, 12% 13%);
  opacity: 0.95;
}

.loader-shield i {
  color: var(--dark);
  z-index: 2;
  font-size: 30px;
}

.loader-card strong {
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.loader-line {
  width: 180px;
  height: 5px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  border-radius: inherit;
  animation: loadingBar 1.25s infinite ease-in-out;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(230%);
  }
}

@keyframes pulseShield {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar i {
  color: var(--gold-2);
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.08);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 54px;
  background: linear-gradient(145deg, var(--navy), var(--dark));
  clip-path: polygon(50% 0%, 88% 13%, 88% 54%, 50% 100%, 12% 54%, 12% 13%);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.18);
}

.brand-mark i {
  color: var(--gold-2);
  font-size: 20px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--dark);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  padding: 11px 13px;
  color: #334155;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
  background: #f1f5f9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
}

.page {
  display: none;
  animation: pageIn 0.45s ease;
}

.page.active {
  display: block;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: calc(100vh - 122px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.slide.active {
  opacity: 1;
  animation: slowZoom 7s ease forwards;
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.74) 0%,
      rgba(7, 17, 31, 0.64) 44%,
      rgba(7, 17, 31, 0.34) 100%
    ),
    radial-gradient(
      circle at 30% 30%,
      rgba(200, 151, 43, 0.22),
      transparent 36%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  color: var(--white);
  max-width: 840px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 100%;
}

.trust-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.trust-card strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 2px;
}

.trust-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  right: max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--white);
  color: var(--dark);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-2);
}

.floating-card {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 48%;
  transform: translateY(-50%);
  width: 290px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--dark), var(--blue));
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.floating-card h3 {
  margin-bottom: 8px;
}

.floating-card p {
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transform: scale(1.06);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.6)),
    radial-gradient(
      circle at 80% 20%,
      rgba(200, 151, 43, 0.24),
      transparent 34%
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 820px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  margin-bottom: 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold-2);
}

.premium-strip {
  background: var(--white);
  margin-top: -54px;
  position: relative;
  z-index: 8;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.strip-item {
  padding: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid var(--border);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f8f1df;
  color: var(--gold);
  font-size: 1.25rem;
}

.strip-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.strip-item p {
  font-size: 0.86rem;
}

.about-preview {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(200, 151, 43, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  width: 78%;
  height: 480px;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  border: 8px solid var(--white);
}

.experience-badge {
  position: absolute;
  top: 38px;
  right: 22px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(200, 151, 43, 0.28);
  color: var(--dark);
  animation: floatY 4s infinite ease-in-out;
}

.experience-badge strong {
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  font-family: "Playfair Display", serif;
}

.experience-badge span {
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.check-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
  font-weight: 700;
}

.check-list i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  font-size: 0.82rem;
  margin-top: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--dark);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.services-section {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(200, 151, 43, 0.15),
      transparent 28%
    ),
    radial-gradient(circle at 90% 50%, rgba(18, 59, 112, 0.42), transparent 34%);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section h2,
.services-section h3 {
  color: var(--white);
}

.services-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 355px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #111827;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.74;
  z-index: -2;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 31, 0.1),
    rgba(7, 17, 31, 0.96)
  );
  z-index: -1;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-content {
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: var(--gold-2);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.service-link {
  color: var(--gold-2);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(15, 23, 42, 0.06);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.process-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--dark);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.process-card h3 {
  margin-bottom: 10px;
}

.cta {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.72)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.cta-card {
  border-radius: 36px;
  padding: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: stretch;
}

.testimonial-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
}

.review-card p {
  color: #334155;
  font-weight: 600;
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  color: var(--dark);
  line-height: 1.2;
}

.review-author span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.value-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f8f1df;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  position: relative;
}

.timeline-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dark), var(--blue));
  color: var(--gold-2);
  display: grid;
  place-items: center;
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.service-list-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.simple-service {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.simple-service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.simple-service img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.simple-service-body {
  padding: 26px;
}

.simple-service-body i {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.simple-service-body h3 {
  margin-bottom: 10px;
}

.simple-service-body p {
  margin-bottom: 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 36px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.side-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.side-card h3 {
  margin-bottom: 16px;
}

.side-services {
  display: grid;
  gap: 10px;
}

.side-service-btn {
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #334155;
  border-radius: 16px;
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.side-service-btn:hover,
.side-service-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.emergency-card {
  background: linear-gradient(145deg, var(--dark), var(--blue));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.emergency-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200, 151, 43, 0.22);
  right: -50px;
  top: -50px;
}

.emergency-card h3,
.emergency-card p {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.detail-main {
  min-width: 0;
}

.detail-cover {
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main h2 {
  margin-bottom: 18px;
}

.detail-main .lead {
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.feature-box {
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-box i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--white);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  box-shadow: 0 8px 18px rgba(2, 8, 23, 0.06);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.safety-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200, 151, 43, 0.1);
  right: -42px;
  top: -42px;
}

.safety-card i {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--dark);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.safety-card h3 {
  margin-bottom: 10px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
  color: var(--dark);
  text-align: left;
  font-size: 1rem;
}

.faq-question i {
  transition: var(--transition);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.faq-item.active .faq-answer {
  max-height: 160px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-info {
  border-radius: 34px;
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.94), rgba(18, 59, 112, 0.86)),
    url("https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--dark);
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: var(--transition);
}

.socials a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
}

.contact-form {
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 38px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--dark);
  font-weight: 900;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: var(--dark);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: var(--transition);
  font-size: 0.96rem;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 151, 43, 0.12);
}

.form-message {
  margin-top: 14px;
  font-weight: 800;
  display: none;
}

.form-message.success {
  display: block;
  color: #059669;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(200, 151, 43, 0.13),
      transparent 30%
    ),
    radial-gradient(circle at 90% 70%, rgba(18, 59, 112, 0.28), transparent 34%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  padding: 76px 0 46px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 36px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.66);
  margin-top: 20px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 13px 15px;
  color: var(--white);
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.newsletter button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--dark);
  cursor: pointer;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: var(--dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 14px 28px rgba(200, 151, 43, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .floating-card {
    display: none;
  }

  .strip-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .service-list-page,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .navbar {
    height: 74px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 16px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
  }

  .hero {
    min-height: calc(100vh - 74px);
  }

  .two-col,
  .testimonial-grid,
  .contact-layout,
  .detail-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .image-stack {
    min-height: 500px;
  }

  .detail-cover {
    height: 340px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero-content {
    padding: 72px 0 110px;
  }

  .hero-trust,
  .strip-grid,
  .stats-grid,
  .process-grid,
  .services-grid,
  .service-list-page,
  .safety-grid,
  .feature-grid,
  .about-values,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    left: 14px;
    right: auto;
    bottom: 24px;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .image-main,
  .image-small {
    position: static;
    width: 100%;
    height: 330px;
    border: 0;
  }

  .experience-badge {
    width: 124px;
    height: 124px;
    right: 16px;
    top: 16px;
  }

  .experience-badge strong {
    font-size: 2rem;
  }

  .cta-card,
  .contact-info,
  .contact-form {
    padding: 28px;
    border-radius: 26px;
  }

  .contact-info {
    min-height: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    min-height: 330px;
  }

  .brand-text strong {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .cta-card > div:last-child {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-card .btn,
  .contact-form .btn {
    width: 100%;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
    border-radius: 999px;
  }
}
