
/* ======================================== */
/*  home.css – Homepage Exclusive Styles     */
/*  NO header, footer, cursor, or nav code   */
/*  Only what's unique to the homepage       */
/* ======================================== */

.hero-luxury {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.65) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 10, 40, 0.95) 0%,
    rgba(0, 238, 255, 0.12) 50%,
    rgba(0, 255, 136, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3.5rem, 9.5vw, 10.5rem);
  line-height: 0.92;
  margin-bottom: 20px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  transform: translateY(110%);
}

.gradient-text {
  background: linear-gradient(90deg, #00eeff, #00ffcc, #88ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  max-width: 720px;
  margin-bottom: 56px;
  opacity: 0.92;
  font-weight: 300;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.btn-glow {
  background: linear-gradient(45deg, #00eeff, #00ff88);
  color: #000;
  padding: 18px 52px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 0 50px rgba(0,238,255,0.6);
  transition: all 0.4s ease;
}

.btn-glow:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 100px rgba(0,238,255,0.9);
}

.btn-outline {
  border: 2px solid #00eeff;
  color: #00eeff;
  padding: 16px 48px;
  border-radius: 60px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: #00eeff;
  color: #000;
  box-shadow: 0 0 60px rgba(0,238,255,0.5);
}

/* Premium Features Section */
.premium-features {
  padding: 180px 0 160px;
  background: #0f0f0f;
}

.section-title h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  text-align: center;
  margin-bottom: 120px;
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.feature-card {
  perspective: 1500px;
}

.card-inner {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,238,255,0.15);
  border-radius: 32px;
  padding: 60px 35px;
  text-align: center;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover .card-inner {
  transform: translateZ(60px) rotateY(4deg);
  border-color: #00eeff;
  box-shadow: 0 50px 100px rgba(0,238,255,0.28);
}

.feature-card i {
  font-size: 4.2rem;
  margin-bottom: 32px;
  background: linear-gradient(45deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Mobile Perfection */
@media (max-width: 768px) {
  .hero-content { padding: 0 6%; }
  .hero-buttons { 
    flex-direction: column; 
    align-items: flex-start;
    gap: 20px;
  }
  .btn-glow, .btn-outline { width: 100%; text-align: center; }
  .premium-features { padding: 140px 0 120px; }
}

@media (max-width: 480px) {
  .hero-luxury { min-height: 640px; }
  .premium-features { padding: 120px 0 100px; }
  .card-inner { padding: 50px 25px; }
}