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

:root{
  --bg:#0f1115;
  --bg-alt:#141826;
  --text:#e9edf5;
  --muted:#a6afc2;
  --card:#1a1f2e;
  --border:#2a3147;
  --accent:#c7ff00;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===== LAYOUT ===== */
.container{
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section{ padding: 80px 0; }
.section.alt{ background: var(--bg-alt); }

.section-head{
  max-width: 680px;
  margin-bottom: 46px;
}

.section-head h2{
  font-size: 2.2rem;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.section-head p{ color: var(--muted); }

/* ===== HEADER / NAV ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,17,21,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand{
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .6px;
}

.menu{
  display: flex;
  gap: 16px;
  align-items: center;
}

.menu a{
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  padding: 6px 8px;
  border-radius: 8px;
}

.menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.cta{
  text-decoration: none;
  background: var(--accent);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 10px 28px rgba(199,255,0,.12);
}

/* ===== HERO ===== */
.hero{ padding: 96px 0; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.badge{
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1{
  font-size: 2.85rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead{
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 26px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary{
  background: var(--accent);
  color: #000;
  box-shadow: 0 16px 40px rgba(199,255,0,.10);
}

.btn.ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.ghost:hover{
  background: rgba(255,255,255,.06);
}

.btn.full{ width: 100%; }

/* Mini info */
.mini-info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.mini-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 14px;
}

.mini-title{
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.mini-value{
  font-weight: 800;
  font-size: .95rem;
}

/* Hero Photo */
.hero-photo{ position: relative; }

.photo-frame{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.photo-frame img{
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.floating-card{
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: rgba(26,31,46,.95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px 14px;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.floating-title{
  font-weight: 900;
  margin-bottom: 4px;
}

.floating-sub{
  color: var(--muted);
  font-size: .92rem;
}

/* ===== ABOUT ===== */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.checklist{
  margin-top: 6px;
  margin-bottom: 22px;
}

.checklist li{
  list-style: none;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  color: var(--text);
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.note{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
}

.note-title{
  font-weight: 900;
  margin-bottom: 6px;
}

.note-text{
  color: var(--muted);
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.shot{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--card);
}

.shot img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.shot:hover img{
  transform: scale(1.03);
}

/* ===== CARDS (Services / Packages) ===== */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.card h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p{ color: var(--muted); }

/* ===== CONTACT FORM ===== */
.contact-form{
  max-width: 560px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.form-group{ margin-bottom: 16px; }

label{
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: #101421;
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(199,255,0,.55);
  box-shadow: 0 0 0 4px rgba(199,255,0,.10);
}

textarea{ resize: vertical; }

.contact-direct{
  margin-top: 20px;
  color: var(--muted);
}

.contact-direct p{ margin-bottom: 6px; }

/* ===== FOOTER ===== */
.footer{
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px){
  .hero-grid{ grid-template-columns: 1fr; }
  .floating-card{ left: 12px; bottom: 12px; }
  .about-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .menu{ display: none; }
  .hero{ padding: 72px 0; }
  .hero h1{ font-size: 2.15rem; }
  .mini-info{ grid-template-columns: 1fr; }
  .shot img{ height: 190px; }
}