/* --- BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0D1117;
  color: #E5E7EB;
  scroll-behavior: smooth;
  line-height: 1.7;
}

/* --- NAVIGATION --- */
.glass-nav {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(18, 22, 33, 0.85);
  padding: 16px 48px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 88px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

nav a {
  color: #E5E7EB;
  margin-left: 32px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s, transform 0.2s;
}

nav a:hover {
  color: #D4AF37; /* Gold accent */
  transform: translateY(-2px);
}

/* --- HERO --- */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #E5E7EB;
  background: url("mainimg.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18,22,33,0.9), rgba(18,22,33,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.hero-logo {
  width: 140px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 40px;
  color: #C0C0C0;
}

/* HERO FEATURES */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-features span {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.45);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #E5E7EB;
  transition: transform 0.3s, background 0.3s;
}

.hero-features span:hover {
  transform: translateY(-2px);
  background: rgba(212,175,55,0.15);
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta {
  padding: 15px 38px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.cta.primary {
  background: #D4AF37;
  color: #0D1117;
}

.cta.primary:hover {
  background: #C19C2F;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

.cta.outline {
  border: 2px solid #D4AF37;
  color: #D4AF37;
}

.cta.outline:hover {
  background: #D4AF37;
  color: #0D1117;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

/* --- ABOUT --- */
.about {
  padding: 140px 60px;
  background: #1B1F28; /* Darker section */
}

.about-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: 46px;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-weight: 800;
}

.about-text p {
  font-size: 18.5px;
  color: #C0C0C0;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 45px 85px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* --- SERVICES --- */
.services {
  padding: 120px 40px;
  background: #0D1117;
  text-align: center;
}

.services h2 {
  font-size: 46px;
  margin-bottom: 80px;
  color: #FFFFFF;
}

.service-row {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 28px 65px rgba(0,0,0,0.35);
  transition: transform 0.35s, box-shadow 0.35s;
  background: #1B1F28;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18,22,33,0.88), rgba(18,22,33,0.65));
  color: #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  padding: 25px;
  text-align: center;
}

.service-card:hover img {
  transform: scale(1.2);
}

.service-card:hover .overlay {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #D4AF37;
}

.service-card p {
  font-size: 1rem;
  color: #C0C0C0;
}

/* --- CONTACT --- */
.contact {
  background: #1B1F28;
  color: #E5E7EB;
  padding: 120px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 44px;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.contact-card {
  max-width: 580px;
  margin: auto;
  background: rgba(212,175,55,0.05);
  padding: 50px;
  border-radius: 26px;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.contact-card p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* --- FOOTER --- */
.site-footer {
  background: #111827;
  color: #E5E7EB;
  padding: 50px 20px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.35);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Footer Buttons */
.footer-buttons .cta.outline {
  border: 2px solid #D4AF37;
  color: #D4AF37;
}

.footer-buttons .cta.outline:hover {
  background: #D4AF37;
  color: #0D1117;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.45);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* Contact */
.contact { background:#222; color:white; padding:100px 20px; text-align:center; opacity:0; transform:translateY(50px); transition: all 1s ease-out; }
.contact.show { opacity:1; transform:translateY(0); }
.contact h2 { font-size:36px; margin-bottom:30px; }
.contact form { max-width:500px; margin:auto; text-align:left; }
.contact form input,
.contact form textarea { width:100%; padding:12px 15px; margin-bottom:15px; border:none; border-radius:8px; font-size:16px; background:#f0f0f0; color:#333; }
.contact form button { width:100%; padding:15px; background:#f39c12; color:white; border:none; border-radius:30px; font-size:18px; font-weight:bold; cursor:pointer; transition:0.3s; }
.contact form button:hover { background:#d35400; }