/* ───────────────────────────────────────────────
   LOCAL WEB CREATOR — style.css
   Color Palette:
     Primary:    #1A3C5E  (Deep Navy)
     Secondary:  #2E7D6B  (Forest Teal)
     Accent:     #F4A742  (Warm Amber)
     Light BG:   #F8F7F4  (Off-White Cream)
     Dark BG:    #111C26  (Near-Black Navy)
     Text:       #1E2B38
     Muted:      #6B7B8D
   Typography:
     Display:    DM Serif Display (headings)
     Body:       DM Sans (body, UI)
─────────────────────────────────────────────── */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1A3C5E;
  --secondary:  #2E7D6B;
  --accent:     #F4A742;
  --light:      #F8F7F4;
  --dark:       #111C26;
  --text:       #1E2B38;
  --muted:      #6B7B8D;
  --white:      #FFFFFF;
  --border:     #E2DDD6;
  --shadow:     0 4px 24px rgba(26,60,94,0.10);
  --shadow-lg:  0 12px 40px rgba(26,60,94,0.15);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 52px;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--secondary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(244,167,66,0.35);
}
.btn-primary:hover {
  background: #e69830;
  border-color: #e69830;
  box-shadow: 0 6px 24px rgba(244,167,66,0.45);
}

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

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light); }

.btn-full { width: 100%; text-align: center; }


/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }


/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding: 16px 0;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo-text { font-size: 1rem; font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--secondary); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
  background: var(--light);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,125,107,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,60,94,0.08);
  color: var(--primary);
  border: 1px solid rgba(26,60,94,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-headline {
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--secondary); }

.hero-sub {
  font-size: 1.15rem;
  max-width: 540px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ── PROBLEM ── */
.problem { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { color: var(--text); margin-bottom: 10px; }


/* ── SERVICES ── */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.service-item:hover { background: rgba(46,125,107,0.04); }
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4), .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: rgba(46,125,107,0.2);
  margin-bottom: 12px;
  line-height: 1;
}
.service-item h3 { color: var(--text); margin-bottom: 10px; }


/* ── PRICING ── */
.pricing { background: var(--white); }

.pricing-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-bottom: 36px;
}
.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-amount {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3.6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.price-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-disclaimer {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
}


/* ── ABOUT ── */
.about { background: var(--light); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-avatar {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.avatar-initials {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.about-location {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  background: rgba(46,125,107,0.10);
  padding: 6px 14px;
  border-radius: 100px;
}

.about-content p { max-width: 480px; }
.about-content .section-title { margin-bottom: 24px; }


/* ── WHY CHOOSE ME ── */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(46,125,107,0.3);
}
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-item h3 { color: var(--text); margin-bottom: 8px; }


/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a44 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,167,66,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
}


/* ── CONTACT ── */
.contact { background: var(--light); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 36px; max-width: 340px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}
.cd-icon { font-size: 1.1rem; }
.contact-detail a { color: var(--secondary); transition: color var(--transition); }
.contact-detail a:hover { color: var(--primary); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46,125,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 16px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }


/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 52px 0 36px;
}
.footer-inner {
  text-align: center;
}
.footer .logo-mark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.footer .logo-text { color: var(--white); }
.footer-logo {
  display: flex;
  flex-direction: row;   /* stack LWC and text */
  align-items: center;      /* center horizontally */
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;  /* 👈 THIS is what you're missing */

}


.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .problem-grid,
  .services-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }

  .services-grid { border-radius: var(--radius-lg); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(4) { border-bottom: 1px solid var(--border); }
  .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }

  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .about-visual { flex-direction: row; justify-content: flex-start; }

  .pricing-card { padding: 48px 28px 36px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-size: 1.3rem;
  }
  .nav-links.open .nav-cta { font-size: 1rem; }

  .hero-inner { padding: 60px 24px 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .hero-trust { gap: 14px; flex-direction: column; }

  .problem-grid,
  .services-grid,
  .why-grid { grid-template-columns: 1fr; }

  .service-item { border-right: none !important; }
  .service-item:last-child { border-bottom: none; }

  .about-visual { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

  .hero-scroll-hint { display: none; }
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 20px;
  background-color: #1A3C5E; /* blue */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-initials {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #111827; /* dark gray */
}

.highlight {
  color: #1A3C5E;
}

.hero-icon {
  width: 16px;
  height: 16px;
}