/* Animations for hero and about */
.animate-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.hero, #about, #about .about-highlight, #about .section-lead, #about .ticks {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 32px 18px 24px 18px;
  box-shadow: 0 8px 32px rgba(58,160,255,.10);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-quote {
  font-style: italic;
  color: var(--accent);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
/* Packages Section: override cards for 3-wide */
.section-alt .cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}
@media (max-width: 900px) {
  .section-alt .cards { grid-template-columns: 1fr; }
}
/* Process Section */
.process-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 32px 0 0 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px 28px 16px 28px;
  min-width: 120px;
  box-shadow: 0 6px 24px rgba(58,160,255,.08);
}
.process-icon {
  font-size: 2em;
  margin-bottom: 10px;
}
.process-label {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 1px;
}
.process-arrow {
  font-size: 2em;
  color: var(--accent2);
  margin: 0 6px;
}
@media (max-width: 700px) {
  .process-grid {
    flex-direction: column;
    gap: 0;
  }
  .process-arrow {
    display: none;
  }
  .process-step {
    margin-bottom: 12px;
    min-width: 0;
    width: 100%;
  }
}
:root{
  --bg: #071428;
  --bg2:#0a1d38;
  --card:#0c2446;
  --card2:#0b1f3b;
  --text:#eaf2ff;
  --muted:#b9c7e6;
  --line: rgba(255,255,255,.08);
  --accent:#3aa0ff;
  --accent2:#1d5cff;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 75% 10%, rgba(58,160,255,.18), transparent 55%),
    radial-gradient(900px 500px at 20% 0%, rgba(29,92,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #050d18);
  /* keep space for fixed header so content isn't hidden */
  padding-top: 62px;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin:0 auto; }

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7,20,40,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}
.logo{
  height: 42px;
  width: auto;
  display: block;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:44px; height:28px;
  position:relative;
}
.peak{
  position:absolute; bottom:0;
  width:0; height:0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid rgba(58,160,255,.95);
  filter: drop-shadow(0 10px 18px rgba(58,160,255,.25));
}
.peak-1{ left:0; opacity:.75; transform:scale(.95); }
.peak-2{ left:10px; border-bottom-color: rgba(29,92,255,.95); }
.peak-3{ left:20px; opacity:.6; transform:scale(.9); }

.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-weight:800; letter-spacing:.2px; font-size:18px; }
.brand-sub{ font-weight:700; font-size:11px; letter-spacing:2.2px; opacity:.7; margin-top:3px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-toggle{ display:none; background:transparent; border:0; color:var(--text); cursor:pointer; padding:8px; border-radius:8px; }
.hamburger{ display:inline-block; width:22px; height:16px; position:relative; }
.hamburger span{ display:block; height:2px; background:var(--text); border-radius:2px; margin:4px 0; transition: transform .18s ease, opacity .18s ease; }
.nav-link{
  font-weight:600;
  font-size:14px;
  color: rgba(234,242,255,.86);
  padding:10px 10px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{ background: rgba(255,255,255,.06); }
.nav-link.active{ color: #fff; background: rgba(58,160,255,.10); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight:800;
  font-size:14px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border .2s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 40px rgba(58,160,255,.18);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: rgba(234,242,255,.92);
}

.hero{
  padding: 62px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.hero-copy h1{
  margin:0;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.accent{ color: var(--accent); }
.hero-sub{
  margin: 14px 0 18px;
  color: var(--muted);
  font-weight:600;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-badges{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,242,255,.88);
  font-weight:700;
  font-size:12px;
}

.hero-art{
  position:relative;
  min-height: 320px;
}
.art-card{
  position:absolute;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.art-card-1{ right:0; top:12px; width: 92%; height: 210px; }
.art-card-2{ left:0; bottom: 18px; width: 52%; height: 180px; }
.art-card-3{ right: 10px; bottom: 0; width: 48%; height: 150px; }

.art-top{
  height: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(58,160,255,.12);
}
.art-lines{ padding:18px; display:grid; gap:10px; }
.art-lines span{
  height:10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.art-lines span:nth-child(2){ width:80%; }
.art-lines span:nth-child(3){ width:65%; }
.art-lines span:nth-child(4){ width:90%; }

.art-icon, .art-icon2{
  width:44px; height:44px;
  margin:18px;
  border-radius: 14px;
  background: rgba(58,160,255,.16);
  border: 1px solid rgba(58,160,255,.22);
}
.art-bars{ display:flex; gap:8px; padding: 0 18px 18px; align-items:flex-end; }
.art-bars span{
  width:18px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
}
.art-bars span:nth-child(1){ height:38px; }
.art-bars span:nth-child(2){ height:64px; background: rgba(58,160,255,.20); }
.art-bars span:nth-child(3){ height:48px; }

.art-pill{
  margin: 10px 18px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}
.art-pill.small{ width:70%; }

.section{
  padding: 56px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title{
  margin:0;
  font-size: 30px;
  letter-spacing:-.2px;
}
.section-lead{
  margin: 10px 0 22px;
  color: var(--muted);
  font-weight:600;
  max-width: 700px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.card-icon{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(58,160,255,.15);
  border: 1px solid rgba(58,160,255,.22);
  font-weight:900;
  margin-bottom: 12px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 14px; color: rgba(234,242,255,.78); }
.card-link{ color: rgba(58,160,255,.95); font-weight:800; }


/* Trust Strip */
.trust-strip {
  width: 100%;
  background: rgba(29,92,255,0.10);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 0 8px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 18px;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin: 18px 0 0 0;
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}
.stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.10);
}

/* Icon Bullets for Results Section */
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 24px;
}
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.results-list .result-icon {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
}

/* Services: 4 cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
}

.work-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work{
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.work-img{
  height: 170px;
  background:
    radial-gradient(600px 220px at 30% 0%, rgba(58,160,255,.25), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.work-img.alt{
  background:
    radial-gradient(600px 220px at 70% 0%, rgba(29,92,255,.25), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.work-img.alt2{
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(0,190,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.work-caption{
  padding: 14px 16px 16px;
}
.work-caption h4{ margin:0 0 6px; }
.work-caption p{ margin:0; color: rgba(234,242,255,.74); }

.about-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.ticks{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(234,242,255,.80);
  font-weight:600;
}
.ticks li{ margin: 10px 0; }

.about-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 18px;
}
.about-card h3{ margin:0 0 14px; }
.stats{ display:grid; gap: 10px; }
.stat{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.stat-num{ display:block; font-weight:900; font-size:18px; }
.stat-label{ display:block; color: rgba(234,242,255,.72); font-weight:700; margin-top:3px; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

/* Responsive: collapse nav into dropdown on narrow screens */
@media (max-width: 900px){
  .nav { display:none !important; flex-direction:column !important; gap:10px; padding:12px; position:absolute; left:0; right:0; top:62px; background: rgba(7,20,40,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); z-index:49; }
  .nav-toggle{ display:inline-flex !important; align-items:center; }
  .nav-open .nav{ display:flex !important; }
  .nav-wrap{ padding:10px 0; }
  .nav-link{ padding:10px 12px; border-radius:8px; display:block; width:100%; }
  .nav .btn{ width:100%; }
  /* animate hamburger to X when open */
  .nav-open .hamburger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .nav-open .hamburger span:nth-child(2){ opacity:0; }
  .nav-open .hamburger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}
.contact-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:800;
  font-size:12px;
  color: rgba(234,242,255,.86);
}

.form{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 18px;
}
label{ display:block; font-weight:800; font-size:13px; color: rgba(234,242,255,.90); }
input, select, textarea{
  width:100%;
  margin-top:8px;
  margin-bottom:14px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(58,160,255,.40);
  box-shadow: 0 0 0 4px rgba(58,160,255,.10);
}
.form-note{
  margin: 10px 0 0;
  color: rgba(234,242,255,.62);
  font-weight:600;
  font-size:12px;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: rgba(234,242,255,.72);
  background: rgba(0,0,0,.12);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-links{ display:flex; gap: 12px; }
.footer-links a{ color: rgba(234,242,255,.72); font-weight:700; }
.footer-links a:hover{ color: #fff; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ min-height: 280px; }
  .cards, .why-grid, .work-grid{ grid-template-columns: 1fr; }
  .about-grid, .contact-grid{ grid-template-columns: 1fr; }
  .nav{ gap: 10px; flex-wrap:wrap; justify-content:flex-end; }
  .nav-cta{ width: 100%; }
}
.admin-table{
  width:100%;
  border-collapse: collapse;
  min-width: 900px;
}
.admin-table th, .admin-table td{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  text-align:left;
  color: rgba(234,242,255,.85);
  font-weight:650;
  font-size: 13px;
}
.admin-table th{
  color: rgba(234,242,255,.95);
  font-weight: 900;
}

/* Staff page */
.staff-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.staff-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
  text-align: center;
}
.staff-avatar{
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(58,160,255,.25), transparent),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 2px solid rgba(255,255,255,.12);
}
.staff-name{
  margin: 0 0 6px;
  font-size: 20px;
}
.staff-role{
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.staff-bio{
  margin: 0;
  color: rgba(234,242,255,.78);
  font-size: 14px;
  line-height: 1.5;
}
.staff-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.staff-card-link:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(58,160,255,.15);
  border-color: rgba(58,160,255,.25);
}
