:root {
  --primary-color: #f39c12; /* Golden Orange for energy/luxury */
  --secondary-color: #2c3e50; /* Deep Slate */
  --accent-color: #e67e22; /* Warmer Orange */
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

@keyframes slowGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(243, 156, 18, 0.2); }
  50% { text-shadow: 0 0 25px rgba(243, 156, 18, 0.5); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

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

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color);
  animation: slowGlow 3s infinite;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url('assets/hero.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 18px 35px;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4);
}

/* Featured Section */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title .underline {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto;
}

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

.card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Services */
.services-section {
  background: #121212;
}

.service-item {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.service-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

/* CTA Section */
.cta-banner {
  background: linear-gradient(45deg, #2c3e50, #000000);
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin: 50px 20px;
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.footer-socials a {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.footer-socials a:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}
