/* SEMO Total Home Solutions - clean reset
   Deep navy background, logo orange accents, high-contrast white text
*/

:root {
  /* Logo orange (from your image) */
  --accent: #ff6a00;
--accent-soft: #ff8f33;

  /* Backgrounds */
  --bg-deep: #020617;   /* main background */
  --bg-panel: #020b2a;  /* cards / panels */

  /* Neutrals */
  --gray-900: #020617;
  --gray-700: #4b5563;
  --gray-500: #9ca3af;
  --gray-300: #e5e7eb;
  --gray-100: #f9fafb;
  --white: #ffffff;

  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.75);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.9);
}

/* Reset / base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-deep);
  color: var(--white);
}

/* Page background */

.page-gradient {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.22), transparent 60%),
    linear-gradient(180deg, #020617 0%, #020617 50%, #000000 100%);
}

/* Layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.17), transparent 65%),
    linear-gradient(180deg, #020b2a 0%, #020617 100%);
  opacity: 1;
  z-index: 0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.92));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 90px;   /* Increase logo size here */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: var(--white);
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-300);
}

/* NAV */

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-links a {
  color: var(--gray-100);
  text-decoration: none;
  font-size: 0.84rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1f0700 !important;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gray-100);
}

/* HERO */

.hero {
  padding: 3.4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.8rem;
}

.hero-text {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--gray-300);
  margin: 0 0 0.8rem;
}

.hero h1 {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero h1 span {
  color: var(--accent-soft);
}

.hero-sub {
  margin: 0 0 1.15rem;
  color: var(--gray-100);
  font-size: 0.97rem;
  max-width: 37rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.tag-pill {
  font-size: 0.78rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--gray-300);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.hero-meta {
  font-size: 0.82rem;
  color: var(--gray-300);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1f0800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 1);
}

.btn.ghost {
  background: transparent;
  color: var(--gray-100);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn.ghost:hover {
  border-color: rgba(209, 213, 219, 0.95);
  background: rgba(15, 23, 42, 0.9);
}

.btn.fullwidth {
  width: 100%;
}

/* Hero card */

.hero-card {
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-deep));
  border-radius: 24px;
  padding: 1.6rem 1.55rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  max-width: 360px;
  margin-left: auto;
}

.hero-card-body {
  font-size: 0.9rem;
  color: var(--gray-100);
}

.hero-card-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
}

.hero-card h2 {
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--gray-300);
}

/* Section headers */

.section-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.1rem;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section-subtitle {
  margin: 0;
  color: var(--gray-300);
  font-size: 0.94rem;
}

/* Cards */

.cards-grid {
  display: grid;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-deep));
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.05rem;
  color: var(--white);
}

.card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-100);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
}

/* Simple list */

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-100);
}

.list li + li {
  margin-top: 0.3rem;
}

.bullet {
  display: inline-block;
  width: 1rem;
  color: var(--accent-soft);
}

/* Steps list (ordered) */

.steps-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-100);
}

/* Two-column layout */

.two-col {
  display: grid;
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

/* Projects */

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.before-after-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.before-after-grid img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.before,
.after {
  display: block;
  font-size: 0.76rem;
  padding: 0.2rem 0.55rem 0.35rem;
}

.before { color: #fca5a5; }
.after  { color: #bbf7d0; }

/* FAQ */

.faq-grid {
  display: grid;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-deep));
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-card);
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--white);
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-100);
}

/* Request / Google form */

.request-grid {
  display: grid;
  gap: 1.8rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.request-note {
  font-size: 0.86rem;
  color: var(--gray-300);
}

.request-note a {
  color: var(--accent-soft);
}

.request-form-wrap {
  background: var(--bg-panel);
  border-radius: 18px;
  padding: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-card);
}

.request-form-wrap iframe {
  border-radius: 12px;
  background: #000;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 1.8rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-100);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-list span {
  font-weight: 600;
}

.contact-list a {
  color: var(--accent-soft);
}

.contact-note {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--gray-300);
}

/* Contact CTA card */

.contact-cta {
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-deep));
  border-radius: 22px;
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.contact-cta h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
}

.contact-cta p {
  margin: 0 0 0.9rem;
  color: var(--gray-100);
}

/* Footer */

.site-footer {
  padding: 1.6rem 0 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  background: #020617;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-300);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--gray-100);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* RESPONSIVE */

@media (min-width: 640px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.45fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(3, 7, 18, 0.98);
    padding: 0.6rem 1.25rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 2.4rem;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.75rem, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
  }
.projects .project-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .projects .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-card {
  background: rgba(3, 10, 30, 0.96);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.project-card h3 {
  margin: 0.4rem 0 0.45rem;
}

.project-card p {
  margin: 0 0 0.8rem;
}

.project-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
