/* Font Face Declaration */
@font-face {
  font-family: 'Intro Rust';
  src: url('/fonts/introrust-base.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('/fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  background: #687b4d;
}

:root {
  --primary: #687b4d;
  --primary-light: #8fa677;
  --primary-dark: #4a5a32;
  --dark: #1C1C1C;
  --light: #F5F5F5;
  --gradient-primary: linear-gradient(135deg, #4a5a32 0%, #687b4d 50%, #8fa677 100%);
  --gradient-secondary: linear-gradient(135deg, #2c361e 0%, #4a5a32 100%);
  --gradient-light: linear-gradient(135deg, rgba(104, 123, 77, 0.1) 0%, rgba(143, 166, 119, 0.2) 100%);
  --perspective: 1000px;
  --mobile-menu-bg: rgba(28, 28, 28, 0.95);
  --header-height: 80px;
  --font-primary: 'Intro Rust', 'Times New Roman', serif;
  --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Animation Keyframes */
@keyframes moveToTopLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(-100vw, -100vh) scale(1);
    opacity: 1;
  }
}

@keyframes moveToBottomRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(100vw, 100vh) scale(1);
    opacity: 1;
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes logoScaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
    filter: brightness(1.5);
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
    filter: brightness(0);
  }
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 20px rgba(104, 123, 77, 0.2);
  }
  50% {
    text-shadow: 0 0 30px rgba(104, 123, 77, 0.4);
  }
  100% {
    text-shadow: 0 0 20px rgba(104, 123, 77, 0.2);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes circleReveal {
  0% {
    clip-path: circle(0% at center);
    opacity: 0;
  }
  100% {
    clip-path: circle(150% at center);
    opacity: 1;
  }
}

@keyframes stickyElementSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(5px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px) scale(0.95);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes stickyElementFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: var(--font-primary), var(--font-fallback);
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.logo-container {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-text {
  font-family: 'Intro Rust', sans-serif !important;
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: normal;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  overflow: visible;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0;
}

.logo-part {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
  position: relative;
  transform-origin: center;
}

.hide-letter {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.logo-container.clicked .hide-letter {
  opacity: 0;
}

.logo-container.clicked .logo-r {
  animation: moveToTopLeft 6s ease-in-out forwards;
  z-index: 10000;
}

.logo-container.clicked .logo-q {
  animation: moveToBottomRight 6s ease-in-out forwards;
  z-index: 10000;
}

.logo-container.clicked {
  pointer-events: none;
  background: transparent;
}

.loader.fade-out {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
  pointer-events: none;
}

/* Main Content */
.main-content {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: #ffffff;
  color: #000000;
  transition: background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-content.visible {
  opacity: 1;
  visibility: visible;
  animation: circleReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  background: #ffffff;
}

.main-content.visible .main-heading {
  animation: textReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}

.main-content.visible .nav-link {
  opacity: 0;
  animation: textReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.main-content.visible .nav-link:nth-child(1) {
  animation-delay: 0.6s;
}

.main-content.visible .nav-link:nth-child(2) {
  animation-delay: 0.8s;
}

.main-content.visible .nav-link:nth-child(3) {
  animation-delay: 1s;
}

.main-content.visible .top-left-sticky,
.main-content.visible .bottom-right-sticky {
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sticky Elements */
.top-left-sticky {
  position: fixed;
  z-index: 1000;
  /* top: 2rem; */
  left: 2rem;
  font-family: 'Intro Rust', sans-serif !important;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.9);
  filter: blur(5px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-right-sticky {
  position: fixed;
  z-index: 1000;
  bottom: 2rem;
  right: 2rem;
  font-family: 'Intro Rust', sans-serif !important;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.9);
  filter: blur(5px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-left-sticky.slide-in {
  animation: stickyElementSlideIn 0.8s ease-out forwards;
}

.bottom-right-sticky.slide-in {
  animation: stickyElementSlideIn 0.8s ease-out forwards;
}

.top-left-sticky.smooth-appear,
.bottom-right-sticky.smooth-appear {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

/* Main Navigation */
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 2rem;
  width: auto;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 1000;
  background: var(--light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-light);
}

.nav-link:hover::before {
  width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  color: var(--dark);
}

.hamburger-menu svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.hamburger-line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active {
  color: var(--light);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 999;
  transition: all 0.4s ease;
  display: none;
}

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

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile Menu Link Delays */
.mobile-menu .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu .nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu .nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu .nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Media Queries */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }

  .main-nav {
    padding: 1rem;
    top: 0px;
    width: auto;
    right: 0;
  }

  .mobile-menu {
    display: block;
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    width: 44px;
    height: 44px;
    padding: 10px;
    bottom: 20px;
  }

  .hamburger-line {
    width: 20px;
  }

  .mobile-menu .nav-link {
    font-size: 20px;
    margin: 16px 0;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 120px 5vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 1;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}



.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.7;
  transform: translateZ(0);
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: floatAnimation 20s infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(90deg);
  }
  50% {
    transform: translate(0, 100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(270deg);
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(104, 123, 77, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-header {
  margin-bottom: 60px;
}

.brand-tag {
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

[data-scroll="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--dark);
}

.heading-line {
  display: block;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="slide-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.heading-line.highlight {
  color: var(--primary);
  transition-delay: 0.2s;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(28, 28, 28, 0.8);
  max-width: 600px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
  font-family: 'Glacial Indifference', sans-serif;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border-radius: 50px;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .primary-btn, .video-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  .video-btn {
    background: rgba(104, 123, 77, 0.1);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
  }

  .btn-text {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .play-icon {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .hero-cta {
    margin-top: 1.5rem;
  }

  .primary-btn, .video-btn {
    padding: 0.7rem 1.2rem;
  }

  .btn-text {
    font-size: 0.85rem;
  }
}

.featured-section {
  background-color: #f9f9f9;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
top: 20px;
}

.section-tag {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  letter-spacing: 1px;
}

.hotel-logos {
  overflow: hidden;
  position: relative;
}

.logo-carousel {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.hotel-logo {
  flex: 0 0 auto;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
  background: #fff;
  border-radius: 8px;
  margin: 0 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hotel-logo:hover {
  transform: scale(1.05);
  color: #000;
}

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

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.primary-btn:hover::before {
  opacity: 1;
}

.primary-btn .btn-text,
.primary-btn .btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.4s ease;
}

.primary-btn:hover .btn-icon {
  transform: translateX(5px);
}

.video-btn:hover .play-icon {
  /* background: var(--primary); */
  color: black;
  transform: scale(1.1);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  background: linear-gradient(135deg, #4a5a32 0%, #687b4d 50%, #8fa677 100%);
  transform: translateY(-5px);
}

.feature-card:hover .feature-icon,
.feature-card:hover h3,
.feature-card:hover p {
  color: #ffffff;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  transition: color 0.3s ease;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.8);
  transition: color 0.3s ease;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem auto 0;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.5s;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(45deg, rgba(104, 123, 77, 0.3), rgba(143, 166, 119, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  font-weight: normal;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
}

.counter {
  display: inline-block;
}

.plus,
.percent {
  font-size: 0.7em;
  opacity: 0.8;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark);
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  height: 60px;
  margin: 0 auto;
  opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
  z-index: 2;
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: rgba(104, 123, 77, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 2rem;
    margin-top: 4rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 1rem auto;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-line {
    height: 40px;
  }
}

/* Mobile Hero Section */
.hero-section {
  min-height: 100vh;
  width: 100%;
  padding: 60px 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  padding: 1rem;
  text-align: center;
  z-index: 2;
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: #000000;
}

.main-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Intro Rust', sans-serif !important;
  letter-spacing: 0.08em;
  color: #000000;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  max-width: 90%;
  margin: 0 auto 2rem;
  color: #000000;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  max-width: 280px;
  margin: 0 auto;
}

.hero-button {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .hero-section {
    padding: 100px 2rem 2rem;
    justify-content: center;
  }

  .hero-content {
    padding: 2rem;
    max-width: 800px;
  }

  .main-heading {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
  }

  .hero-button {
    width: auto;
    padding: 1rem 2rem;
  }

  .stats-bar {
    max-width: 600px;
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem;
  }

  .stat-divider {
    width: 1px;
    height: 50px;
    margin: auto 0;
  }

  .hotel-logo {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 1200px;
  }

  .main-heading {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .stats-bar {
    max-width: 800px;
  }

  .hotel-logo {
    font-size: 1.1rem;
  }
}

/* Center Content */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.main-heading {
  font-family: 'Intro Rust', sans-serif !important;
  letter-spacing: 0.08em;
  color: #000000;
}

/* Bottom Section */
.bottom-section {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  z-index: 1000;
}

.description {
  max-width: 320px;
}

.description p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  line-height: 1.5;
  color: #000;
  font-weight: 300;
}

.year {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #000;
  font-weight: 400;
}

.studio-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #000;
  font-weight: 400;
  letter-spacing: 0.15em;
  border: 1px solid #000;
  padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
 

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  /* Hamburger Animation */
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Menu Links */
  .mobile-menu .nav-link {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .mobile-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu .nav-link:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu .nav-link:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu .nav-link:nth-child(4) { transition-delay: 0.4s; }

  /* Hero Section Mobile Adjustments */
  .hero-section {
    padding-top: 60px;
    min-height: 100vh;
  }

  .hero-content {
    padding: 2rem 1rem 1rem;
  }

  .main-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1rem);
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-button {
    padding: 1rem;
    font-size: 0.9rem;
    width: 100%;
    display: block;
    text-align: center;
  }

  .stats-bar {
    margin: 1rem auto;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .floating-card {
    display: none;
  }

  .featured-section {
    padding: 2rem 1rem;
  }

  .section-tag {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hotel-logos {
    margin: 0 -1rem;
    padding: 1rem;
  }

  .hotel-logo {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  /* Fix sticky elements for mobile */
  .top-left-sticky,
  .bottom-right-sticky {
    font-size: clamp(1rem, 5vw, 1.5rem);
    opacity: 0.7;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .top-left-sticky.smooth-appear,
  .bottom-right-sticky.smooth-appear {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
  }

  .main-nav {
    top: 1rem;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .bottom-section {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
  
  .description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 2.5rem;
  }
  
  .top-left-sticky,
  .bottom-right-sticky {
    font-size: 1.5rem;
    top: 1rem;
    left: 1rem;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .bottom-right-sticky {
    bottom: 1rem;
    right: 1rem;
  }
  
  .main-nav {
    padding: 1rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
  
  .studio-label {
    padding: 0.4rem 0.8rem;
  }

  .main-nav {
    gap: 1rem;
  }
  
  .hero-section {
    padding-top: calc(var(--header-height) + 0.5rem);
  }

  .brand-tag {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    margin-bottom: 1rem;
  }

  .hero-content {
    padding: 0.5rem 1rem;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
  }

  .stats-bar {
    position: relative;
    width: 90%;
    margin: 1rem auto;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .floating-card {
    display: none;
  }

  .scroll-indicator {
    bottom: 0.5rem;
  }
}

/* Floating Cards */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(104, 123, 77, 0.2);
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.card-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-text {
  font-family: 'Intro Rust', sans-serif;
  font-size: 0.8rem;
  color: var(--primary-light);
  letter-spacing: 0.1em;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2.5s;
  z-index: 2;
}

.scroll-text {
  font-family: 'Intro Rust', sans-serif;
  font-size: 0.8rem;
  color: var(--primary-light);
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

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

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

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

/* Luxury Pattern */
.luxury-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, var(--primary) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
  .main-nav {
    padding: 1rem;
    top: 0px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 0.5rem);
  }

  .brand-tag {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    margin-bottom: 1rem;
  }

  .floating-card {
    display: none;
  }

  .scroll-indicator {
    bottom: 0.5rem;
  }
}

/* Additional Responsive Fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-heading {
    font-size: clamp(3rem, 10vw, 4rem);
  }

  .hero-subtitle {
    max-width: 70%;
  }

  .stats-bar {
    width: min(80%, 600px);
  }
}

@media (min-width: 1025px) {
  .hero-content {
    max-width: 80%;
  }

  .stats-bar {
    width: min(70%, 800px);
  }
}

/* Elegant White Footer */
.elegant-footer {
  background: #ffffff;
  color: #1a1a1a;
  padding: 5rem 2rem 2rem;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
  padding-right: 2rem;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  color: #687b4d !important;
}

.brand-tagline {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.elegant-icon {
  font-size: 0.8rem;
  color: #927032;
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: #927032;
}

.social-link:hover .elegant-icon {
  transform: rotate(90deg);
}

/* Navigation Section */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nav-column h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}

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

.nav-column ul li {
  margin-bottom: 0.75rem;
}

.nav-column ul a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-column ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #927032;
  transition: width 0.3s ease;
}

.nav-column ul a:hover {
  color: #927032;
}

.nav-column ul a:hover::after {
  width: 100%;
}

/* Contact Info */
.contact-info {
  color: #666;
}

.contact-detail {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-detail .label {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.contact-detail a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #927032;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #666;
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #927032;
}

.separator {
  color: #ccc;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
  }

  .footer-social {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .elegant-footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-main {
    gap: 2rem;
  }

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

  .contact-info {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .elegant-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    grid-column: auto;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }

  .nav-column {
    text-align: center;
  }

  .nav-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-detail {
    text-align: center;
  }

  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 70px 5vw;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  color: var(--dark);
  transform: translateZ(0);
  will-change: transform;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(104, 123, 77, 0.05) 0%, rgba(143, 166, 119, 0.1) 100%); */
  pointer-events: none;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 2rem 0 4rem;
  font-weight: normal;
  color: var(--dark);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.section-heading .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  animation: lineGrow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
  }
}

.about-text {
  position: relative;
}

.lead-text {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--primary);
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.7s;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(28, 28, 28, 0.8);
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.9s;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: -170px;
}

.exp-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.exp-card:nth-child(1) { animation-delay: 1.1s; }
.exp-card:nth-child(2) { animation-delay: 1.3s; }
.exp-card:nth-child(3) { animation-delay: 1.5s; }

.exp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(104, 123, 77, 0.15);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-card:hover .exp-number,
.exp-card:hover .exp-label {
  color: white;
  position: relative;
  z-index: 1;
}

.exp-number {
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.exp-label {
  font-size: 1rem;
  color: rgba(28, 28, 28, 0.8);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

/* Services Section */
.services-section {
  padding: 70px 5vw;
  background-color: #ffffff;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.services-content {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }
.service-card:nth-child(4) { animation-delay: 0.9s; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
  color: var(--dark);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.8);
  margin-bottom: 1.5rem;
}

.service-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.service-hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.service-hover-content li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-hover-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .about-section,
  .services-section {
    padding: 80px 5vw;
  }

  .section-heading {
    font-size: 2.5rem;
    margin: 1.5rem 0 3rem;
  }

  .lead-text {
    font-size: 1.25rem;
  }

  .experience-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section,
  .services-section {
    padding: 60px 5vw;
  }

  .section-heading {
    font-size: 2rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .exp-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Founder Section */
.founder-section {
  padding: 10px 5vw;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.founder-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .founder-content {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
  }
}

.founder-image-container {
  position: relative;
  padding: 2rem;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: floatUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-wrapper:hover .founder-image {
  transform: scale(1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(104, 123, 77, 0.1),
    rgba(104, 123, 77, 0.2)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.founder-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.founder-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 15px 15px, var(--primary) 2px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: -1;
  transform: translate(-20px, -20px);
  animation: patternFloat 20s linear infinite;
}

@keyframes patternFloat {
  0% {
    transform: translate(-20px, -20px);
  }
  50% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(-20px, -20px);
  }
}

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

.founder-text {
  padding: 2rem 0;
}

.founder-name {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--dark);
  margin: 1rem 0;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.founder-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: normal;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

.founder-quote {
  position: relative;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.7s;
}

.quote-mark {
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.2;
}

.founder-quote p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
  padding-left: 2rem;
}

.founder-bio {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.9s;
}

.founder-bio p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.8);
}

.founder-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.achievement:nth-child(1) { animation-delay: 1.1s; }
.achievement:nth-child(2) { animation-delay: 1.3s; }
.achievement:nth-child(3) { animation-delay: 1.5s; }

.achievement-icon {
  font-size: 1.2rem;
  color: var(--primary);
}

.achievement-text {
  font-size: 1rem;
  color: var(--dark);
}

.founder-signature {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.7s;
}

.signature-img {
  width: 200px;
  height: auto;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .founder-section {
    padding: 80px 5vw;
  }

  .founder-image-container {
    padding: 1rem;
  }

  .founder-quote p {
    font-size: 1.1rem;
  }

  .founder-achievements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .founder-section {
    padding: 60px 5vw;
  }

  .founder-name {
    font-size: 2rem;
  }

  .founder-title {
    font-size: 1rem;
  }

  .quote-mark {
    font-size: 3rem;
    top: -1.5rem;
  }
}

/* Smooth scroll utility class */
.smooth-scroll {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Add smooth transitions */
.main-content section {
  transition: background-color 0.3s ease;
  background-color: #ffffff;
}

/* Force hardware acceleration */
.main-content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Prevent background color flashing */
.main-content::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -2;
  pointer-events: none;
}

/* Fix for mobile webkit */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  .main-content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Floating Icons Styles */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.icon-float {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Remove the transform translateX since we're using explicit left/right values */
.icon-left, .icon-right {
  transform: none;
}

/* Stagger animations for different icons */
.icon-float:nth-child(2) {
  animation-delay: -2s;
}

.icon-float:nth-child(3) {
  animation-delay: -4s;
}

.icon-float:nth-child(4) {
  animation-delay: -1s;
}

.icon-float:nth-child(5) {
  animation-delay: -3s;
}

.icon-float:nth-child(6) {
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Add hover effect */
.icon-float:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Add responsive adjustments */
@media (max-width: 768px) {
  .icon-float {
    transform: scale(0.8);
  }
  
  .icon-left, .icon-right {
    display: none;
  }
}

/* Restyled Featured Section */
.featured-section.restyled {
  background: #fff;
  padding: 64px 0 48px 0;
  border-radius: 0;
  box-shadow: none;
  margin: 64px 0 48px 0;
  max-width: none;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.featured-header .luxury-headline {
  font-family: 'Intro Rust' ;
  font-size: 2.2rem;
  font-weight: 700;
  color: #687b4d;
  margin-bottom: 0.5em;
}
.featured-header .luxury-subhead {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 2em;
}
.client-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 0 auto 32px auto;
  max-width: 700px;
}
.client-card {
  background: #f8f8f5;
  border-radius: 16px;
  padding: 24px 0;
  font-size: 1.1rem;
  font-family: 'Intro Rust';
  font-weight: 600;
  color: #687b4d;
  box-shadow: 0 2px 8px rgba(104, 123, 77, 0.06);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(104, 123, 77, 0.13);
}
.hr-pitch {
  margin: 32px auto 24px auto;
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  line-height: 1.7;
}
.cta-wrapper {
  margin-top: 24px;
}
.luxury-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #687b4d 100%);
  color: #fff;
  font-family: 'Intro Rust';
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(104, 123, 77, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.04em;
}
.luxury-cta-btn:hover {
  background: linear-gradient(90deg, #687b4d 100%);
  box-shadow: 0 8px 32px rgba(104, 123, 77, 0.18);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 600px) {
  .featured-section.restyled {
    padding: 24px 0 24px 15px;
    margin: 32px 0 32px 0;
  }
  .featured-header .luxury-headline {
    font-size: 1.2rem;
    padding: 0 8px;
    line-height: 1.2;
  }
  .featured-header .luxury-subhead {
    font-size: 0.95rem;
    padding: 0 8px;
    line-height: 1.3;
  }
  .client-marquee-wrapper {
    padding: 6px 0;
  }
  .client-marquee {
    font-size: 1rem;
    gap: 16px;
    padding: 0 8px;
  }
  .client-card {
    font-size: 1rem;
    padding: 0 4px;
  }
  .hr-pitch {
    font-size: 0.95rem;
    padding: 0 8px;
    margin: 18px auto 16px auto;
    line-height: 1.5;
  }
  .cta-wrapper {
    margin-top: 16px;
  }
  .luxury-cta-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 22px;
  }
}

@font-face {
  font-family: 'Intro Rust';
  src: url('fonts/introrust-base.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.client-marquee-wrapper {
  overflow: hidden;
  width: 100vw;
  margin: 0 0 32px 0;
  background: #f8f8f5;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.client-marquee {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee-scroll 18s linear infinite;
  font-family: 'Intro Rust', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #687b4d;
  white-space: nowrap;
}
.client-card {
  font-family: 'Intro Rust', 'Georgia', serif !important;
  font-size: 1.5rem;
  color: #687b4d;
  background: none;
  border-radius: 0;
  padding: 0 16px;
  box-shadow: none;
  display: inline-block;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.client-card:hover {
  color: #b7a16a;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .client-marquee {
    font-size: 1.1rem;
    gap: 24px;
  }
  .client-card {
    font-size: 1.1rem;
    padding: 0 8px;
  }
}

/* Prevent horizontal scroll on mobile for full-width sections */
body {
  overflow-x: hidden;
}
.featured-section.restyled,
.client-marquee-wrapper {
  max-width: 100vw;
  box-sizing: border-box;
}