:root {
  --teal: #17b8c4;
  --teal-dark: #0d8a94;
  --black: #0b0b0d;
  --dark: #16171a;
  --dark2: #1e2023;
  --white: #ffffff;
  --off-white: #f4f7f8;
  --accent: #ffd23f;
  --accent-dark: #e8b800;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(255, 210, 63, 0.4);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(23, 184, 196, 0.35);
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 8px;
}
.brand span {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}
.main-nav a:hover { opacity: 1; color: var(--teal); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-call {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.75) 55%, rgba(11,11,13,0.92) 100%), url("../images/hero.jpg");
  background-size: cover;
  background-position: center 35%;
  text-align: center;
}

.hero-content {
  max-width: 780px;
  padding: 140px 20px 60px;
}

.hero-logo {
  width: 190px;
  margin: 0 auto 26px;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.hero-content h1 span {
  color: var(--teal);
}

.hero-sub {
  color: var(--off-white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 18px auto 34px;
  max-width: 560px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero-trust strong { color: var(--accent); }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.7;
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Section generic */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.05rem;
}
.section-dark .section-lead { color: #c9c9c9; }
.eyebrow {
  display: block;
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* Trust strip */
.trust-strip {
  background: var(--teal);
  color: var(--white);
  padding: 16px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.trust-strip .container div { display: flex; align-items: center; gap: 8px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .icon {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p { color: #555; font-size: 0.95rem; }
.service-card.featured {
  border-top-color: var(--accent);
  position: relative;
}
.service-card.featured .badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--accent);
  color: var(--black);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 10px;
}
.why-item { text-align: center; padding: 10px; }
.why-item .icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.why-item h4 { font-weight: 700; margin-bottom: 8px; }
.why-item p { color: #555; font-size: 0.92rem; }

/* Gallery / about split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 18px; }
.about-text p { color: #444; margin-bottom: 16px; }
.about-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-weight: 600;
}
.about-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark2);
  padding: 28px;
  border-radius: var(--radius);
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: #e5e5e5; margin-bottom: 16px; }
.testimonial-card .author { font-weight: 700; color: var(--teal); font-size: 0.9rem; }

/* Service area */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.area-tags span {
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Contact / CTA */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; opacity: 0.95; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.contact-card h3 { font-weight: 800; margin-bottom: 20px; font-size: 1.3rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.contact-row .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-row a:hover { color: var(--teal-dark); }

.form-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 34px;
}
.form-card h3 { font-weight: 800; margin-bottom: 8px; font-size: 1.3rem; }
.form-card .hint { color: #666; font-size: 0.9rem; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* Footer */
.site-footer {
  background: var(--black);
  color: #bbb;
  padding: 40px 0 24px;
  text-align: center;
  font-size: 0.9rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand img { height: 36px; width: 36px; border-radius: 6px; }
.footer-brand span { color: var(--white); font-weight: 800; }
.footer-social { margin-bottom: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark2);
  margin: 0 6px;
  font-size: 1rem;
}
.footer-social a:hover { background: var(--teal); }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 62px; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-content { padding-top: 120px; }
}
