:root {
  --sunrise-amber: #FF8C00;
  --deep-gold: #FFD700;
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --charcoal: #2D2D2D;
  --sunset-red: #E63946;
  --text-dark: #1A1A1A;
  --text-light: #F0F0F0;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --nav-bg: rgba(255, 255, 255, 0.05);
  --footer-bg: #1a1a1a;
  --card-bg: #FFFFFF;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --charcoal: #F0F0F0;
    --text-dark: #E0E0E0;
    --text-light: #1A1A1A;
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(0, 0, 0, 0.2);
    --card-bg: #1E1E1E;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--sunset-red), var(--sunrise-amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: var(--bg-secondary);
  padding: 1rem 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--sunrise-amber);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

.hero:hover .hero-img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--sunrise-amber), var(--deep-gold));
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  display: inline-block;
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
  border: none;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
}

/* Section Common */
section {
  padding: 80px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--sunrise-amber);
  margin: 0 auto;
  border-radius: 10px;
}

/* Services / Offerings */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.offering-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-img-container {
  height: clamp(200px, 30vh, 250px);
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* Team Section */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  text-align: center;
  max-width: 300px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member h3 {
  color: var(--sunrise-amber);
  margin-top: 10px;
}

.team-member span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 10px;
}

/* Why Us Section */
.why-us {
  background: var(--charcoal);
  color: var(--text-light);
}

.why-us .section-title h2 {
  color: var(--text-light);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.feature-box {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box h3 {
  color: var(--deep-gold);
  margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--sunrise-amber);
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 40px 10%;
  background: var(--footer-bg);
  color: #888;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content p {
  margin-bottom: 5px;
}

/* Portrait & Mobile Responsiveness */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-secondary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-links.active {
    right: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 5%;
  }
}

/* Dark Mode Bars */
@media (prefers-color-scheme: dark) {
  .menu-toggle .bar {
    background-color: var(--bg-primary);
  }

  footer {
    background: #000;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}