@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Urbanist:wght@400;500;600;700;800;900&display=swap");

:root {
  --red: #e50914;
  --red-dark: #95000a;
  --black: #060608;
  --dark: #111216;
  --dark-2: #1c1f25;
  --grey: #777b84;
  --silver: #d6d9df;
  --white: #ffffff;
  --blue: #00a3ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, var(--red-dark), var(--red), #10151d);
  color: var(--white);
  font-size: 0.88rem;
  padding: 8px 0;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 6, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 8, 0.97);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.34);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 250px;
}

.site-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #eceef2;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 0 26px rgba(229, 9, 20, 0.38);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--white);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), #065dff);
  color: var(--white);
  box-shadow: 0 0 26px rgba(0, 163, 255, 0.34);
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(8, 8, 10, 0.7) 42%, rgba(229, 9, 20, 0.14) 100%), url("../images/hero-premium.png");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  right: 9%;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 80px rgba(229, 9, 20, 0.22), 0 0 90px rgba(229, 9, 20, 0.18);
  animation: pulseRing 4s ease-in-out infinite;
}

.hero::after {
  inset: auto 0 0;
  height: 150px;
  border-radius: 0;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero h2,
.page-hero h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  max-width: 840px;
  text-transform: uppercase;
}

.hero h2 span,
.section-title span {
  color: var(--red);
  text-shadow: 0 0 24px rgba(229, 9, 20, 0.35);
}

.hero p {
  color: #e5e8ee;
  max-width: 690px;
  font-size: 1.12rem;
  margin: 24px 0 30px;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  max-width: 650px;
}

.hero-badge {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.85rem;
  color: var(--white);
}

.hero-badge span {
  color: var(--silver);
  font-size: 0.92rem;
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icons i {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(229, 9, 20, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.28);
  animation: floatIcon 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { right: 16%; top: 22%; }
.floating-icons i:nth-child(2) { right: 7%; top: 48%; animation-delay: 1.2s; }
.floating-icons i:nth-child(3) { right: 28%; bottom: 24%; animation-delay: 2s; }

section {
  padding: 92px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 42px;
}

.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 4.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-copy {
  color: var(--silver);
  max-width: 560px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.image-card,
.service-card,
.why-card,
.contact-card,
.testimonial,
.stat-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.image-card {
  position: relative;
  min-height: 270px;
}

.image-card img,
.service-card img,
.why-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.image-card:hover img,
.service-card:hover img,
.why-card:hover img,
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.14) contrast(1.08);
}

.image-card .overlay,
.gallery-item .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
}

.image-card h3,
.service-card h3,
.why-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  min-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image .plate {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(6, 6, 8, 0.84);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.feature-list li {
  list-style: none;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.feature-list i {
  color: var(--red);
  margin-right: 8px;
}

.dark-band {
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 9, 20, 0.32), transparent 28%),
    linear-gradient(135deg, #08080a, #15161b 55%, #260307);
  border-block: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(229, 9, 20, 0.58);
}

.service-media {
  height: 210px;
  overflow: hidden;
}

.service-body {
  padding: 20px;
}

.service-body p,
.why-card p,
.testimonial p,
.contact-card p {
  color: var(--silver);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(229, 9, 20, 0.16);
  color: var(--red);
}

.gallery-grid {
  columns: 4 250px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 255px;
  margin: 0 0 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark);
}

.gallery-item.tall {
  height: 350px;
}

.gallery-item.no-crop {
  height: auto;
  min-height: 280px;
  background: #0f0f10;
  padding: 8px;
}

.gallery-item.no-crop img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.gallery-item.no-crop:hover img {
  transform: none;
  filter: none;
}

.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card img {
  height: 235px;
  object-fit: cover;
}

.why-card div {
  padding: 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  color: var(--red);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 28px;
}

.stars {
  color: #ffc247;
  margin-bottom: 16px;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
}

.contact-card {
  padding: 26px;
}

.contact-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
}

.contact-strip {
  background: #f4f4f4;
  color: #2b2b2b;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-strip-card {
  position: relative;
  min-height: 290px;
  padding: 30px 28px;
  border-radius: 24px;
  background: #ececec;
  border: 1px solid #e2e2e2;
  overflow: visible;
}

.contact-strip-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-strip-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6f6f6;
  color: #5a5a5a;
  font-size: 1.45rem;
}

.contact-strip-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  color: #2f2f2f;
  line-height: 1;
}

.contact-strip-line {
  width: 100%;
  border-top: 1px solid #d7d7d7;
  margin-bottom: 22px;
}

.contact-strip-text {
  color: #525252;
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-strip-arrow {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8f8f8;
  color: #555;
  border: 1px solid #dfdfdf;
}

.booking {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.16), rgba(0, 163, 255, 0.1)), #0b0c10;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.booking-panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: none;
  padding: 15px 16px;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.14);
}

select option {
  color: var(--black);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  background-image: linear-gradient(100deg, rgba(0, 0, 0, 0.84), rgba(229, 9, 20, 0.2)), url("../images/home-service.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.page-hero.services-bg {
  background-image: linear-gradient(100deg, rgba(0, 0, 0, 0.84), rgba(229, 9, 20, 0.18)), url("../images/hotel-equipment.jpg");
}

.page-hero.contact-bg {
  background-image: linear-gradient(100deg, rgba(0, 0, 0, 0.84), rgba(0, 163, 255, 0.16)), url("../images/technician.jpg");
}

.page-hero.about-bg {
  background-image: linear-gradient(100deg, rgba(0, 0, 0, 0.84), rgba(229, 9, 20, 0.16)), url("../images/user-fridge-open-2.jpeg");
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.premium-list {
  display: grid;
  gap: 12px;
}

.premium-list li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.footer {
  padding: 70px 0 92px;
  background: #030304;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr 1.2fr;
  gap: 32px;
}

.footer h3,
.footer h4 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer p,
.footer a,
.footer li {
  color: #c8ccd4;
}

.footer ul {
  display: grid;
  gap: 8px;
}

.footer li {
  list-style: none;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #9298a4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-action {
  position: fixed;
  z-index: 1200;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.45);
  animation: actionPulse 2.2s infinite;
}

.floating-action.call {
  right: 22px;
  bottom: 92px;
  background: var(--red);
}

.floating-action.whatsapp {
  right: 22px;
  background: #17b857;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(4deg); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 0.55; }
}

@keyframes actionPulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

@media (max-width: 1024px) {
  .header-call {
    display: none;
  }

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

  .about-grid,
  .booking-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 68px;
  }

  .brand {
    min-width: auto;
  }

  .site-logo {
    width: 140px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(6, 6, 8, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    padding: 14px 18px 20px;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links a::after {
    bottom: 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h2,
  .page-hero h2 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .hero-badges,
  .strip-grid,
  .services-grid,
  .why-grid,
  .contact-grid,
  .stats-grid,
  .testimonials-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-copy {
    margin-top: 12px;
  }

  section {
    padding: 68px 0;
  }

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

  .contact-strip-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 360px;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-item,
  .gallery-item.tall {
    height: 270px;
  }

  .booking-panel {
    padding: 22px;
  }
}
