:root {
  --dark: #101317;
  --dark-soft: #1b2027;
  --accent: #d9272e;
  --accent-dark: #a71920;
  --gold: #f2b544;
  --text: #1c2430;
  --text-muted: #667085;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --shadow: 0 18px 45px rgba(16, 19, 23, 0.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  will-change: transform;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff !important;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.loaded {
  opacity: 1;
}
body::before,
body::after {
  display: none !important;
  content: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #000;
  font-size: 0.9rem;
  padding: 6px 20px;
  text-align: center;
  z-index: 9999;
}

.navbar {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Playfair Display", serif;
  z-index: 1000;
  color: #000000;
  transition: 0.4s ease;
}
.navbar.scrolled {
  background: rgba(16, 19, 23, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.navbar .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-left: 0;
}
.logo span,
.text-accent {
  color: var(--accent);
}
.logo small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-top: 5px;
}
.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: none;
  margin: 0;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: 32px;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  opacity: 0.8;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #000000;
  opacity: 1;
}
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-links a {
  color: #ffffff;
}
.navbar.reveal .nav-brand,
.navbar.reveal .nav-links a {
  color: #000000;
}
.navbar.reveal {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: none;
}
.navbar.reveal a {
  color: #000000;
}
.navbar.reveal .hamburger {
  color: #000000;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(217, 39, 46, 0.4);
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 25px rgba(217, 39, 46, 0.6);
}
.btn-outline,
.btn-outline-white {
  background: transparent;
  border: 1px solid currentColor;
}
.btn-outline {
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-outline-white {
  color: #ffffff;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
  margin-left: auto;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    url("./images/hero/1.png") center/cover no-repeat;
  z-index: 1;
  opacity: 0;
}

.hero.loaded .hero-bg {
  opacity: 1;
  transition: opacity 1.2s ease;
}

.hero-content {
  position: absolute;
  top: 120px;
  left: 80px;
  z-index: 2;
  max-width: 500px;
  opacity: 1;
  color: #000;
  text-align: left;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  color: #000;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  font-family: "Inter", sans-serif;
  margin-top: 10px;
}

.hero h1 span {
  color: #e11d2e;
}

.hero.loaded .hero-content {
  color: #ffffff;
}

.hero p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  opacity: 0.7;
  margin-top: 8px;
}

/* Stagger Animations */
.hero h1,
.hero h2,
.hero p,
.hero-btns {
  opacity: 0;
  transform: translateY(30px);
}

.hero:not(.loaded) h1,
.hero:not(.loaded) h2,
.hero:not(.loaded) p {
  opacity: 1;
  transform: none;
}

.hero.loaded h1 {
  transition: 0.8s ease;
  transition-delay: 0.3s;
  opacity: 1;
  transform: none;
  color: #ffffff;
}

.hero.loaded h2,
.hero.loaded p {
  transition: 0.8s ease;
  transition-delay: 0.6s;
  opacity: 1;
  transform: none;
}

.hero.loaded .hero-btns {
  transition: 0.8s ease;
  transition-delay: 0.9s;
  opacity: 1;
  transform: none;
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.quick-services {
  margin-top: 0;
  position: relative;
  z-index: 5;
}
.qs-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.qs-card,
.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.qs-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.float-btn {
  transition: all 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(217, 39, 46, 0.3);
}
.qs-card {
  align-items: center;
  display: flex;
  gap: 18px;
  min-height: 132px;
  padding: 26px;
}
.qs-icon,
.feature-icon {
  align-items: center;
  background: rgba(217, 39, 46, 0.1);
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}
.qs-icon {
  font-size: 2rem;
  height: 62px;
  width: 62px;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 2;
  background: #ffffff;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.6s ease;
}
.section.show {
  transform: translateY(0);
  opacity: 1;
}
.bg-alt {
  background: var(--bg-alt);
}
.page-header {
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.9), rgba(16, 19, 23, 0.46)),
    url("./images/hero/2.png") center/cover no-repeat;
  color: #ffffff;
  padding: 160px 0 86px;
}
.page-header h1,
.section h2,
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}
.page-header p,
.section p {
  color: var(--text-muted);
}
.page-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

/* Brands Section */
.brands-wrapper {
  overflow: hidden;
  background: #ffffff;
  padding: 20px 0;
  position: relative;
  z-index: 2;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.6s ease;
}
.brands-wrapper.show {
  transform: translateY(0);
  opacity: 1;
}
.brands-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollIcons 20s linear infinite;
}
.brand-logo {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  color: var(--text-muted);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
}
.brand-logo:hover {
  transform: scale(1.1);
  opacity: 1;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(217, 39, 46, 0.4));
}

@keyframes scrollIcons {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1.05fr 0.95fr;
}
.about-text p + p {
  margin-top: 16px;
}
.about-img-wrap {
  border-radius: 8px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}
.exp-badge {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  bottom: 24px;
  color: #ffffff;
  display: flex;
  gap: 14px;
  left: 24px;
  padding: 18px 20px;
  position: absolute;
}
.exp-badge h3 {
  font-size: 2.3rem;
  line-height: 1;
}
.exp-badge p {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.25;
}
.features-list {
  display: grid;
  gap: 18px;
}
.feature-item {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}
.feature-icon {
  font-size: 1rem;
  height: 42px;
  width: 42px;
}

.service-grid,
.booking-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  padding: 30px;
}
.service-card h3 {
  margin: 18px 0 10px;
}
.booking-grid {
  align-items: start;
  grid-template-columns: 1fr 0.75fr;
}
.booking-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 30px;
}
.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
label {
  color: var(--text);
  display: grid;
  font-weight: 600;
  gap: 7px;
}
input,
select,
textarea {
  border: 1px solid #d7dbe4;
  border-radius: 6px;
  font: inherit;
  min-height: 46px;
  padding: 11px 13px;
  width: 100%;
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.cta-section {
  background:
    linear-gradient(rgba(217, 39, 46, 0.85), rgba(16, 19, 23, 0.9)),
    url("./images/hero/3.png") center/cover no-repeat;
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 36px;
  max-width: 620px;
  font-size: 1.2rem;
}
.cta-section h2 {
  font-size: 3rem !important;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}
.footer h4 {
  color: #ffffff;
  margin-bottom: 14px;
}
.footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
}
.footer a:hover {
  color: var(--gold);
}
.footer-contact p {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  padding-top: 22px;
  text-align: center;
}

.floating-actions {
  bottom: 22px;
  display: grid;
  gap: 10px;
  position: fixed;
  right: 20px;
  z-index: 999;
}
.float-btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.1rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.btn-wa {
  background: #25d366;
}
.btn-call {
  background: var(--accent);
}
.btn-top {
  background: var(--dark-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
h1.reveal,
h2.reveal,
h3.reveal,
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
p.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn.reveal {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-zoom.active,
h1.reveal.active,
h2.reveal.active,
h3.reveal.active,
p.reveal.active,
.btn.reveal.active,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-zoom.visible,
h1.reveal.visible,
h2.reveal.visible,
h3.reveal.visible,
p.reveal.visible,
.btn.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 860px) {
  .hamburger {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  .hero {
    min-height: 92vh;
  }
  .quick-services {
    margin-top: 0;
    padding-top: 18px;
  }
  .qs-grid,
  .service-grid,
  .gallery-grid,
  .about-grid,
  .booking-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .section {
    padding: 68px 0;
  }
  .about-img-wrap,
  .about-img-wrap img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .navbar .container {
    padding: 0;
  }
  .nav-brand {
    font-size: 1.2rem;
  }
  .hamburger {
    font-size: 1.5rem;
  }
  .section {
    padding: 60px 0 !important;
  }
  .hero {
    height: 60vh;
    min-height: 60vh;
    padding: 0;
  }
  .hero-content {
    left: 20px;
    top: 100px;
    max-width: 90%;
  }
  .brands-track {
    gap: 30px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .qs-card:active,
  .service-card:active,
  .review-card:active {
    transform: scale(0.98);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 1.25rem;
  }
  .qs-card,
  .service-card,
  .booking-form {
    padding: 22px;
  }
  .floating-actions {
    bottom: 14px;
    right: 12px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  transition: right 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #000;
  text-decoration: none;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}
