body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  scroll-behavior: smooth;

  /* DARK BLUEPRINT BACKGROUND */
  background-color: #0b1220;

  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);

  background-size: 42px 42px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 1000;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.links a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.2s;
}

.links a:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a3c3d");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero p {
  opacity: 0.9;
}

/* BUTTONS (PREMIUM) */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ffb020);
  color: white;
  text-decoration: none;
  font-weight: bold;

  padding: 14px 26px;
  margin: 10px;
  border-radius: 10px;

  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(245,158,11,0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245,158,11,0.4);
}

/* LANG BUTTONS */
.lang {
  display: flex;
  gap: 8px;
}

.lang button {
  background: #f59e0b;
  border: none;
  padding: 6px 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* CONTENT */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* PREMIUM CARDS */
.card {
  background: rgba(255, 255, 255, 0.97);
  padding: 28px;
  margin: 22px 0;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  border: 1px solid rgba(255,255,255,0.08);
}

/* SERVICES */
.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #f8fafc;
  padding: 15px;
  margin: 10px 0;
  border-left: 5px solid #f59e0b;
  border-radius: 6px;
}

/* INSTAGRAM GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;

  border-radius: 10px;

  transition: all 0.25s ease;

  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #666;
}
.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-right {
  text-align: right;
}

.contact-info p {
  margin: 8px 0;
}

.phone-display {
  font-size: 1.2rem;
  font-weight: bold;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.contact-box {
  background: rgba(0,0,0,0.03);
  padding: 10px 12px;
  border-radius: 8px;
}

.contact-box p {
  margin: 0;
}

/* Mobile fix */
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}