
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --bg-dark: #000000;
  --bg-surface: #0a0a0a;
  --primary: #FFD60A;
  --primary-rgb: 255, 214, 10;
  --accent: #FF9F1C;
  --text-main: #FFFFFF;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --grad-primary: linear-gradient(135deg, #FFD60A 0%, #FF9F1C 100%);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  width: 100%;
  position: relative;
}

a {
  color: inherit !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
  outline: none;
}

a:hover {
  color: inherit !important;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.5;
  pointer-events: none;
}

.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
}

.bg-mesh::before {
  top: -200px;
  right: -200px;
  background: rgba(255, 214, 10, 0.08);
  animation: move-1 20s infinite alternate;
}

.bg-mesh::after {
  bottom: -200px;
  left: -200px;
  background: rgba(255, 159, 28, 0.05);
  animation: move-2 25s infinite alternate;
}

@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100px, 100px);
  }
}

@keyframes move-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100px, -100px);
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Outfit';
}

.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
}

.header.scrolled {
  top: 0.5rem;
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-text {
  font-family: 'Outfit';
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 1;
}

@media (min-width: 400px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
  }
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--grad-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-btn {
  background: var(--grad-primary);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .nav-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }
}

.nav-btn span {
  display: none;
}

@media (min-width: 1024px) {
  .nav-btn span {
    display: inline;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 214, 10, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(255, 149, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.437) 0%, transparent 50%);
  filter: blur(50px);
  animation: hero-glow-pulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-glow-pulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(-48%, -52%) scale(1.1);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  font-family: 'Outfit';
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 3.5rem 3rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 214, 10, 0.3);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.area-card {
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  text-align: left;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.area-icon-small {
  background: var(--primary);
  color: #000;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.marquee-modern {
  background: rgba(255, 214, 10, 0.03);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow: hidden;
}

.marquee-items {
  display: flex;
  gap: 5rem;
  animation: scroll-modern 50s linear infinite;
}

@keyframes scroll-modern {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: 'Outfit';
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.cta-luxury {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-luxury {
    border-radius: 60px;
    padding: 6rem 4rem;
  }
}

.cta-luxury h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 2rem;
  font-family: 'Outfit';
}

.footer {
  padding: 8rem 0 140px;
  background: #000;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  font-family: 'Outfit';
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-custom {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 400px;
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 2000;
}

.nav-custom-home,
.nav-custom-call {
  flex: 1;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.nav-custom-home {
  background: var(--grad-primary);
  color: #000 !important;
}

.nav-custom-call {
  position: relative;
  background: transparent;
  color: var(--primary) !important;
}

.nav-custom-call i {
  position: relative;
  z-index: 2;
  animation: icon-breathe 2.5s ease-in-out infinite;
}

.nav-custom-call::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: call-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes call-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
    border: 1px solid var(--primary);
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
    border: 1px solid transparent;
  }
}

@keyframes icon-breathe {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px var(--primary));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--primary));
  }
}

@media (min-width: 1024px) {
  .mobile-nav-custom {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .header {
    width: calc(100% - 1.5rem);
    top: 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}