:root {
  --font-heading: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --radius: 18px;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

h1 { font-size: 43px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
p { font-size: 18px; margin: 0 0 1rem; }
small { font-size: 14px; }
strong { color: var(--heading); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--surface-dark);
  color: var(--on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #FFFFFF;
}

.section-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4 {
  color: #FFFFFF;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--on-primary);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 8px 10px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 20px;
}

.mobile-menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(0, 20, 45, 0.85), rgba(0, 54, 112, 0.55)), url("../images/hero-kitchen.webp");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-panel {
  text-align: center;
}

.hero h1,
.hero h2,
.hero h3 {
  color: #FFFFFF;
}

.hero h1 {
  font-size: 45px;
}

.hero p {
  color: rgba(248, 250, 252, 0.92);
}

.hero-panel {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.hero-stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
}

.hero-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-cta-line {
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

.hero-icons img {
  height: 60px;
  width: auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual img {
  width: 100%;
  display: block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.card h3 {
  margin-top: 16px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 102, 204, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.service-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}

.call-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.call-content h2,
.call-content p {
  color: #FFFFFF;
}

.call-cta-text {
  font-weight: 700;
  color: #FFFFFF;
  margin: 16px 0 12px;
}

.call-content .btn-primary {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.85);
}

.call-content .btn-primary:hover {
  background: #EAF2FF;
  color: #003C88;
}

.call-content .btn-pulse::after {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
}

.call-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.btn-pulse {
  position: relative;
  overflow: hidden;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.5);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(0, 102, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #FFFFFF;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

th {
  font-weight: 700;
  color: var(--heading);
  background: rgba(248, 250, 252, 0.9);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(0, 102, 204, 0.12);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.reviews {
  position: relative;
}

.slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  padding: 0 8px;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
  min-height: 220px;
}

.review-name {
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 18px 20px;
  margin-bottom: 12px;
  background: #FFFFFF;
}

.faq-item summary {
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
}

.map-panel {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.map-panel img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.footer {
  padding: 60px 0;
  background: var(--surface-dark);
  color: var(--on-dark);
}

.footer h4,
.footer p,
.footer a {
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer a {
  color: var(--on-dark);
}

.footer .logo {
  color: #FFFFFF;
}

.footer small {
  color: rgba(248, 250, 252, 0.7);
}

.divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.2);
  margin: 24px 0;
}

.fixed-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
}

.fixed-call .btn {
  width: 100%;
  font-size: 18px;
  padding: 12px 16px;
  line-height: 1.2;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fixed-call .btn svg {
  flex: 0 0 auto;
}

.fixed-call-text {
  display: inline-block;
}

.tagline {
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 12px;
}

.contact-benefits span {
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-dark);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.contact-cta {
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 12px;
}

.contact-image {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
}

.contact-card strong {
  color: var(--heading);
}

.accent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.accent-list span {
  background: rgba(255, 107, 53, 0.12);
  color: #7C2D12;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.reveal-1 { animation-delay: 0.08s; }
.reveal-2 { animation-delay: 0.16s; }
.reveal-3 { animation-delay: 0.24s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .call-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 35px; }
  .hero h1 { font-size: 35px; }
  h2 { font-size: 25px; }
  h3 { font-size: 18px; }
  h4 { font-size: 16px; }
  p { font-size: 16px; }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-inner {
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 18px;
  }

  .nav-actions .btn-outline {
    font-size: 14px;
    padding: 10px 16px;
    order: 2;
    flex-basis: 100%;
    max-width: 280px;
    margin: 0 auto;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    order: 3;
    margin-top: 10px;
  }

  .nav-toggle {
    order: 1;
    margin-left: auto;
  }

  .mobile-menu.active {
    display: flex;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .accent-list {
    grid-template-columns: 1fr;
  }

  .fixed-call {
    display: block;
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-icons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 641px) {
  .nav .container {
    padding-left: 36px;
    padding-right: 32px;
  }

  .logo {
    padding-left: 8px;
  }

  .logo-mark {
    margin-left: 12px;
  }
}
