/* KDL Tech — Clean White with Teal & Graphite */
.nav-links.open {
    display: flex;
}

.nav-toggle {
    display: inline-flex;
}
:root {
  --accent: #00adb5;
  --text-light: #f9fafb;
  --text-muted: #d1d5db;
}
:root {
  --teal: #00adb5;
  --ring: rgba(0, 173, 181, 0.3);
  --bg-muted: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background-color: #fff;
}


/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 64vh;
    display: grid;
    place-items: center;
    background: #0b0c10;
}

.hero {
    border-bottom: 6px solid var(--teal);
}

.hero {
    border-bottom: 6px solid var(--teal);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(to bottom right, rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
    url('/assets/hero.jpg') center/cover no-repeat;
}
/* ===== Header Styling ===== */
.site-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #00adb5;
}

.nav-link.active {
  color: #00adb5;
  border-bottom: 2px solid #00adb5;
  padding-bottom: 2px;
}


.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}


.hero-inner {
    text-align: center;
    color: white;
    padding: 5rem 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.25);
}


.hero-cta {
    display: inline-flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}


.btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: .85rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #00adb5;
  color: white;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #008c91;
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .08);
    border-color: white;
}


/* Section titles */
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.section-sub {
    color: var(--muted);
    margin: 0;
}


/* Cards grid */
.grid {
    display: grid;
    gap: 1.25rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}


.card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
    border-color: rgba(0, 173, 181, .25);
}

.card h3 {
    margin: 0 0 .35rem;
}

.card p {
    margin: 0;
    color: #4b5563;
}

.card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-muted), #ffffff);
    display: grid;
    place-items: center;
    margin-bottom: .5rem;
}

.card .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--teal);
}


/* Feature rows */
.feature {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 900px) {
    .feature {
        grid-template-columns: 1fr;
    }
}

.feature .panel {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}


/* ===== Footer ===== */
.site-footer {
  background: #1e1f24;
  color: #f0f0f0;
  padding-top: 3rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 2rem 2rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-col a {
  color: #b5e3e5; /* soft teal for links */
  text-decoration: none;
  display: inline-block;
  margin: 0.25rem 0;
}

.footer-col a:hover {
  color: #00adb5; /* vibrant teal accent */
}

.footer-col p,
.footer-col .muted {
  color: #d1d5db;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: #aaa;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #00adb5;
  text-decoration: none;
}


/* Forms */
.input,
textarea,
select {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--text);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 6px var(--ring);
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: .35rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.help {
    color: var(--muted);
    font-size: .9rem;
}


/* Utilities */
.muted {
    color: var(--muted);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
}

.kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}
/* ===== Contact Page ===== */
.contact-section {
  padding: 4rem 1.5rem;
  background: #f9fafb;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.contact-info p {
  color: #333;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  color: #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00adb5;
  box-shadow: 0 0 0 3px rgba(0,173,181,0.2);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-map iframe {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
/* ===== Services Page ===== */
.services-section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.services-section h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.services-section .lead {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.services-grid article {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.services-grid h2 {
  margin-bottom: 0.5rem;
  color: #00adb5;
}

.pricing-section {
  background: #f3f4f6;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
}

.pricing-section h2 {
  color: #111;
  margin-bottom: 1rem;
}

.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.pricing-section li {
  margin: 0.5rem 0;
  color: #333;
  position: relative;
}

.pricing-section li::before {
  content: "✓";
  color: #00adb5;
  margin-right: 0.5rem;
}

.pricing-section .btn-primary {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
}
.pricing-section .btn-primary:hover {
  background: #008c91;
}
/* ===== About Page ===== */
.about-hero {
  background: #f9fafb;
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.about-hero .lead {
  color: #444;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  padding: 3rem 1.5rem;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.about-grid .card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.about-grid h2 {
  margin-bottom: 1rem;
  color: #00adb5;
}

.values-section {
  background: #f3f4f6;
  padding: 4rem 1.5rem;
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  color: #111;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.value-card h3 {
  color: #00adb5;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #333;
}

@media (max-width: 800px) {
  .about-hero h1 { font-size: 2rem; }
  .about-hero .lead { font-size: 1rem; }
}
