*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050509;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  background: #050509;
}

.section-alt {
  background: #0b0b10;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: #f5c243;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  color: #cccccc;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 9, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo span {
  color: #f5c243;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5c243, #ffdd7b);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #f5f5f5;
}

.btn-wa-header {
  display: inline-flex;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, #111111 0, #050509 50%, #000000 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-text p {
  max-width: 520px;
  color: #dddddd;
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: #bbbbbb;
}

/* Hero image uses your banner */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 4;
  border-radius: 25px;
  background-image: url("logo.jpg"); /* your uploaded banner */
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f5c243, #ffdd7b);
  color: #131313;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.8);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #f5c243;
  color: #f5c243;
}

.btn.ghost:hover {
  background: rgba(245, 194, 67, 0.12);
}

.btn.small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn.full-width {
  width: 100%;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 25px;
  background-image: radial-gradient(circle at top, #333333, #111111);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(245, 194, 67, 0.35);
}

.about-text p {
  margin-bottom: 10px;
  color: #dddddd;
}

.about-list {
  list-style: none;
  margin-top: 10px;
}

.about-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Cards / Services / Pricing */
.card {
  background: #101015;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 194, 67, 0.15);
}

.card h3 {
  margin-bottom: 8px;
  color: #f5c243;
}

.card p {
  font-size: 0.95rem;
  color: #d4d4d4;
}

.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 10px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 4px;
}

.pricing-card li {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #e5e5e5;
}

.pricing-note {
  margin-top: 18px;
  font-size: 0.85rem;
  text-align: center;
  color: #bbbbbb;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(245, 194, 67, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #e5e5e5;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: flex-start;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-list {
  list-style: none;
  margin-top: 10px;
}

.contact-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: #101015;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 194, 67, 0.15);
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #333;
  background: #050509;
  color: #f5f5f5;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f5c243;
  box-shadow: 0 0 0 1px rgba(245
