/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #111827;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: #1f2933;
  --danger: #ef4444;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.45);
  --transition-fast: 0.18s ease-out;
  --max-width: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.75), transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 20%, #f97316, #ea580c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1020;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7), 0 12px 25px rgba(15, 23, 42, 0.9);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

.logo-img { 
    height: 98px; /* Adjust as needed */ 
    width: auto; 
    display: block; 
    
} 

@media (max-width: 600px) { 
    .logo-img { 
        height: auto;
        max-width: 120px; /* or smaller if needed */
        
        
    } 
    /*body { background: red !important; }*/
}


/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  padding: 0.35rem 0.1rem;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #fb923c);
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(249, 115, 22, 0.6);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent);
  color: var(--text) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* HERO WITH BACKGROUND IMAGE */

.hero-with-bg {
  position: relative;
  padding: 6rem 0 5rem;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.2rem, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #ffffff;
}

.hero-subtitle {
  color: #f1f1f1;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-highlights span {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
}

/* Two-column layout */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Cards & grids */

.feature-card,
.card {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), rgba(15, 23, 42, 0.95));
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
}

.feature-card h3,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.feature-card p,
.card p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Lists */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 0.85rem;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.06), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.step-number {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

details {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

details[open] {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), rgba(15, 23, 42, 0.95));
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA / Contact */

.section-cta {
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 20px;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

textarea {
  resize: vertical;
}

.form-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(to right, #f97316, #fb923c);
  color: #0b1020;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.9);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
}

.btn.ghost:hover {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

.btn.full-width {
  width: 100%;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 1.8rem 0 2.2rem;
  background: radial-gradient(circle at bottom, #020617 0, #000 60%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  width: 100%;
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-with-bg {
    padding-top: 4.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    inset: 56px 1.2rem auto 1.2rem;
    flex-direction: column;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding-inline: 1.2rem;
  }
}
