﻿:root {
  --brand-red: #ea4324;
  --brand-orange: #f79c1c;
  --brand-dark: #151515;
  --brand-muted: #5d5d5d;
  --white: #ffffff;
  --soft-bg: #fff7f2;
  --soft-line: #f2ddd1;
  --shadow-1: 0 10px 30px rgba(14, 14, 14, 0.08);
  --shadow-2: 0 14px 36px rgba(234, 67, 36, 0.16);
  --radius-md: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--brand-dark);
  background: var(--white);
}

a {
  text-decoration: none;
}

.top-strip {
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  font-size: 0.86rem;
  padding: 0.48rem 0;
}

.top-strip a,
.top-strip span {
  color: #fff;
  opacity: 0.98;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #f0f0f0;
  backdrop-filter: blur(8px);
}

.navbar {
  padding: 0.72rem 0;
}

.brand-logo {
  width: auto;
  height: 52px;
}

.navbar-nav .nav-link {
  color: var(--brand-dark);
  font-weight: 600;
  margin: 0 0.35rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid #ddd;
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-cta {
  white-space: nowrap;
}

.btn-brand,
.btn-outline-brand {
  border-radius: 11px;
  font-weight: 600;
  padding: 0.68rem 1.05rem;
  transition: all 0.25s ease;
}

.btn-brand {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  box-shadow: 0 8px 20px rgba(239, 95, 37, 0.35);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 1px solid #efb693;
  color: var(--brand-dark);
  background: #fff;
}

.btn-outline-brand:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-2px);
}

.section-space {
  padding: 92px 0;
}

.hero {
  padding-top: 70px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(247, 156, 28, 0.18),
      transparent 32%
    ),
    radial-gradient(circle at 8% 8%, rgba(234, 67, 36, 0.16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.hero-tag {
  display: inline-block;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #f5cab4;
  color: #bb4c2d;
  background: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  margin-top: 1rem;
  color: var(--brand-muted);
  font-size: 1.04rem;
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  border: 1px solid #f0dacd;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5c3a2d;
  background: #fff;
}

.hero-badges i {
  margin-right: 0.26rem;
  color: var(--brand-red);
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  border: 1px solid #f3e1d8;
  min-height: 450px;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-stat {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(21, 21, 21, 0.92);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  min-width: 165px;
  display: grid;
}

.floating-stat strong {
  font-size: 0.95rem;
}

.floating-stat span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.stats-wrap {
  margin-top: -25px;
  padding-bottom: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-1);
  height: 100%;
}

.stat-card h3 {
  font-size: 1.42rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.stat-card p {
  color: var(--brand-muted);
  margin: 0;
  font-size: 0.88rem;
}

.section-head {
  max-width: 760px;
}

.section-kicker {
  font-size: 0.86rem;
  color: #bb4c2d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-head h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--brand-muted);
  margin-bottom: 0;
}

.service-card {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 1.15rem;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.service-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(120deg, var(--brand-red), var(--brand-orange));
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--brand-muted);
  margin-bottom: 0;
}

.section-bg-soft {
  background: var(--soft-bg);
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: "Open";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(21, 21, 21, 0.64),
    rgba(21, 21, 21, 0.1)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.video-card {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  height: 100%;
}

.video-card video {
  width: 100%;
  height: 520px;
  background: #0f0f0f;
  object-fit: cover;
}

.video-card h3 {
  margin: 0;
  padding: 0.75rem 0.95rem;
  font-size: 1rem;
  font-weight: 700;
}

.about-card,
.contact-card {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 1.3rem;
}

.about-card h2,
.contact-card h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-card p,
.contact-card p {
  color: var(--brand-muted);
}

.about-card li {
  font-size: 14px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
  color: #303030;
}

.check-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-red);
}

.contact-line {
  margin-bottom: 0.75rem;
}

.contact-line i {
  color: var(--brand-red);
  margin-right: 0.35rem;
}

.contact-line a {
  color: var(--brand-dark);
}

.contact-line a:hover {
  color: var(--brand-red);
}

.hours h4 {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours li {
  border: 1px dashed #f1c9b4;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hours strong {
  font-weight: 700;
}

.site-footer {
  background: #111;
  color: #d5d5d5;
  padding: 64px 0 28px;
}

.footer-logo {
  height: 56px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 4px 10px;
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.site-footer a {
  color: #e7e7e7;
}

.site-footer a:hover {
  color: var(--brand-orange);
}

.copyright {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  font-size: 0.88rem;
  color: #b7b7b7;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.whats-call {
  padding: 8px 10px;
  background: #25d366;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  position: fixed;
  left: 15px;
  bottom: 15px;
  color: #fff;
  z-index: 999;
}

.call-fix {
  padding: 8px 10px;
  background: #0d6efd;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #fff;
  z-index: 999;
}

@media (max-width: 991.98px) {
  .brand-logo {
    height: 48px;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid #f0dfd6;
    border-radius: 14px;
    margin-top: 0.8rem;
    padding: 1rem;
    box-shadow: var(--shadow-1);
  }

  .navbar-nav {
    margin-bottom: 0.8rem;
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 0.48rem 0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 45px;
  }

  .hero-media-card {
    min-height: 330px;
  }

  .video-card video {
    height: 440px;
  }
}

@media (max-width: 767.98px) {
  .gallery-item {
    aspect-ratio: 1 / 1.15;
  }

  .video-card video {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .top-strip {
    font-size: 0.78rem;
  }

  .section-space {
    padding: 72px 0;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .site-footer {
    padding-top: 52px;
  }

  .video-card video {
    height: 320px;
  }

  .whats-call {
    padding: 7px 9px;
    background: #25d366;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50px;
    font-size: 16px;
    position: fixed;
    left: 15px;
    bottom: 15px;
    color: #fff;
    z-index: 999;
  }

  .call-fix {
    padding: 8px 10px;
    background: #0d6efd;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    color: #fff;
    z-index: 999;
  }
}
