
:root{
  --bg:#000000;
  --card:#090909;
  --text:#f2f2f2;
  --muted:#a3a3a3;
  --accent:#9b9b9b;
  --border:#4a4a4a;
}

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

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(0,0,0,0.94), rgba(0,0,0,0.96)),
    url('assets/honeycomb.png');
  background-size:cover;
  color:var(--text);
  line-height:1.7;
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

header{
  background:rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky;
  top:0;
  z-index:999;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
}

.logo img{
  max-height:55px;
  width:auto;
}

nav ul{
  display:flex;
  gap:2rem;
  list-style:none;
}

nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#ffffff;
}

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.88)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop') center/cover;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.hero-content{
  max-width:760px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:1.5rem;
}

.hero p{
  color:var(--muted);
  font-size:1.2rem;
  margin-bottom:2rem;
}

.btn{
  display:inline-block;
  background:transparent;
  border:1px solid #8d8d8d;
  color:#ffffff;
  padding:1rem 1.8rem;
  text-decoration:none;
  border-radius:8px;
  transition:0.3s;
}

.btn:hover{
  background:#8d8d8d;
  color:#000;
}

.section{
  padding:6rem 0;
}

.section-title{
  font-size:2.5rem;
  margin-bottom:1rem;
}

.section-subtitle{
  color:var(--muted);
  margin-bottom:2rem;
  max-width:850px;
}

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

.card{
  background:rgba(12,12,12,0.92);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:2rem;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,0.16);
}

.card h3{
  margin-bottom:1rem;
  font-size:1.3rem;
}

.price{
  margin-top:1rem;
  font-size:1.4rem;
  color:#d0d0d0;
  font-weight:bold;
}

.about-image{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
}

.contact-form{
  display:grid;
  gap:1rem;
}

input, textarea{
  width:100%;
  padding:1rem;
  background:#050505;
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  border-radius:10px;
}

textarea{
  min-height:180px;
}

button{
  cursor:pointer;
}

footer{
  margin-top:4rem;
  border-top:1px solid rgba(255,255,255,0.08);
  padding:2.5rem 0;
  text-align:center;
  color:#9d9d9d;
  background:#020202;
}

table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:12px;
}

th, td{
  border:1px solid rgba(255,255,255,0.08);
  padding:1rem;
}

th{
  background:#101010;
}

tr:nth-child(even){
  background:#0a0a0a;
}

@media(max-width:900px){
  .navbar{
    flex-direction:column;
    gap:1rem;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .logo img{
    max-height:42px;
  }
}
