/* ROOT VARIABLES (LOGO SIZE CONTROL) */
:root{
  --logo-size-desktop:220px;   
  --logo-size-mobile:90px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#111;
  color:#fff;
}

/* NAVBAR */
.topbar{
  background:#000;
  padding:14px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-logo img{
  height:40px;
}

nav a{
  color:#fff;
  margin-left:25px;
  text-decoration:none;
  font-weight:500;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  background:#000;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
}

.hero-inner{
  position:relative;
  max-width:1100px;
  margin:auto;
  padding:120px 20px;
  text-align:center;
}

/* BRAND BLOCK */
.hero-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:25px;
}

/* 🔥 LOGO SIZE CONTROL */
.hero-logo{
  width:var(--logo-size-desktop);
  max-width:45vw;
  height:auto;
  margin-bottom:15px;
}

/* COMPANY NAME */
.company-name{
  font-size:46px;
  font-weight:800;
  letter-spacing:2px;
  color:#f37021;
  margin-bottom:10px;
}

.company-tagline{
  font-size:18px;
  color:#ccc;
}

/* HERO TEXT */
.hero-desc{
  font-size:17px;
  color:#ddd;
  max-width:800px;
  margin:20px auto 35px;
}

.hero-buttons{
  margin-bottom:40px;
}

.btn{
  padding:14px 30px;
  border-radius:4px;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
  transition:all 0.3s ease;
}

.primary{
  background:#f37021;
  color:#fff;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

/* STATS */
.hero-stats{
  display:flex;
  justify-content:center;
  gap:50px;
}

.hero-stats strong{
  font-size:28px;
  color:#f37021;
}

.hero-stats span{
  display:block;
  font-size:14px;
  color:#ccc;
}

/* SECTIONS */
.dark-section{
  padding:80px 20px;
  max-width:1200px;
  margin:auto;
}

.dark-section h2{
  text-align:center;
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:#1c1c1c;
  padding:40px 20px;
  text-align:center;
  border:1px solid #333;
  transition:all 0.3s ease;
}

.card:hover{
  transform:translateY(-6px);
  border-color:#f37021;
}

/* CONTACT */
.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:80px 20px;
  max-width:1200px;
  margin:auto;
}

.contact-form{
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding:12px;
  border:1px solid #ccc;
}

/* FOOTER */
footer{
  background:#000;
  padding:20px;
  text-align:center;
  color:#aaa;
}

/* MOBILE */
@media(max-width:768px){
  .company-name{
    font-size:28px;
    text-align:center;
  }

  .hero-logo{
    width:var(--logo-size-mobile);
  }

  .hero-stats{
    flex-direction:column;
    gap:20px;
  }

  .contact-section{
    grid-template-columns:1fr;
  }
}
