/* ----- GLOBAL ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #020617;
  color: #e5e7eb;
}

/* ----- HEADER ----- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2933;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: #020617;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 16px;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ----- LAYOUT ----- */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* ----- HERO ----- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
  padding: 32px 24px;
  background: radial-gradient(circle at top, #1e293b, #020617);
  border-radius: 18px;
  margin-top: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.9s ease-out both;
}

.hero-text h1 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 12px;
}

.hero-text p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #cbd5f5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 13px;
  color: #9ca3af;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 260px;
  height: 180px;
  border-radius: 16px;
  border: 2px dashed #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-align: center;
  color: #9ca3af;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn.primary {
  background: #38bdf8;
  color: #020617;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.35);
}

.btn.primary:hover {
  background: #0ea5e9;
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(56, 189, 248, 0.45);
}

.btn.outline {
  border-color: #38bdf8;
  color: #e5e7eb;
}

.btn.outline:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-1px);
}

/* ----- SECTIONS ----- */
.section {
  margin-top: 48px;
}

.section-alt {
  background: #020617;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid #1f2933;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.section-intro {
  margin-top: 0;
  color: #cbd5f5;
}

.small-note {
  font-size: 13px;
  color: #9ca3af;
}

/* ----- SERVICES ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.services-grid ul {
  margin: 0;
  padding-left: 18px;
}

/* ----- WHY CHOOSE US ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.card {
  background: #020617;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #1f2933;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card h3 {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.5);
  border-color: #38bdf8;
}

/* ----- PRICE TABLE ----- */
.price-table {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f2933;
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 10px 14px;
  background: #020617;
}

.price-row:nth-child(even) {
  background: #02081c;
}

.price-header {
  background: #0f172a;
  font-weight: 600;
}

.price-row > div {
  display: flex;
  align-items: center;
}

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.contact-grid a {
  color: #38bdf8;
}

/* ----- FOOTER ----- */
footer {
  border-top: 1px solid #1f2933;
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

/* ----- ANIMATIONS ----- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 760px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  nav a {
    margin-left: 0;
    margin-right: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }
}
.hero-video video {
    width: 100%;
    max-width: 550px;   /* You can change this number */
    border-radius: 20px;
    object-fit: cover;
}
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.logo img {
  height: 50px;
  width: auto;
}

/* PRICE CARDS – MATCH WEBSITE THEME */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.price-card {
  background: #0f172a; /* Dark blue like site background */
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.price-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.price-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.price-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.price-buttons button {
  background: #3b82f6; /* Bright blue */
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}

.price-buttons button:hover {
  background: #1e40af; /* darker blue */
  transform: translateY(-2px);
}

