:root {
  --bg-dark: #0F0F0F;
  --bg-light: #1A1A1A;
  --accent-gold: #D4AF37;
  --accent-gold-light: #E8C873;
  --text-primary: #F5F5F5;
  --text-secondary: #B3B3B3;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}

::selection {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  margin-bottom: 4rem;
  font-weight: 600;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  border-radius: 2px;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.8;
}

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

/* Layout */
.container {
	
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;

}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
  height: 80px;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.nav-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

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

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

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #141414 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-content h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 3px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content h2 {
  color: var(--text-secondary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 3.5rem;
  letter-spacing: 0.2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--accent-gold);
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--accent-gold);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

/* About Section */
#about {
  background-color: var(--bg-light);
  position: relative;
}

#about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Experience Section */
#experience {
  background-color: var(--bg-dark);
}

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

.experience-item {
  position: relative;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  background: linear-gradient(145deg, #121212, #0F0F0F);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.experience-item:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.company {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.position {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.years {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.responsibilities {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Services Section */
#services {
  background-color: var(--bg-dark);
}

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

.service-card {
  position: relative;
  padding: 3.5rem 3rem;
  background: linear-gradient(145deg, #1A1A1A, #151515);
  border: 1px solid rgba(212, 175, 55, 0.05);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card i {
  font-size: 2.8rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: inline-block;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.2);
}

/* Skills Section */
#skills {
  background-color: var(--bg-light);
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.skill-category {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(145deg, #121212, #0F0F0F);
  border: 1px solid rgba(212, 175, 55, 0.05);
}

.skill-category h3 {
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 1rem;
}

.skill-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.skills-list {
  list-style: none;
}

.skills-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.skills-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Contact Section */
#contact {
  background-color: var(--bg-dark);
  text-align: center;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  padding: 1.5rem 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  transition: var(--transition);
  background: rgba(15, 15, 15, 0.3);
  min-width: 250px;
  justify-content: center;
}

.contact-method:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.contact-method i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Consultation Button */
.consult-button {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 0;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.consult-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  section {
    padding: 6rem 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 2rem;
    height: 80px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 1.8rem;
  }

  section {
    padding: 5rem 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid,
  .skills-container,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    width: 100%;
  }

  .consult-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    bottom: 2rem;
    right: 2rem;
  }
}


