/* Base styles */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #243142;
  background-color: #f7f8fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #2f6fb3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #1e2a38;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header & Navigation */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e1e5ee;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-sub {
  font-size: 0.85rem;
  color: #6b7483;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: #2f6fb3;
  text-decoration: none;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #e9f3ff, #ffffff);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.hero-text p {
  font-size: 1rem;
  max-width: 32rem;
  color: #4a5563;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-contact p {
  margin: 0.1rem 0;
  font-size: 0.95rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #2f6fb3;
  color: #ffffff;
  border-color: #2f6fb3;
}

.btn-primary:hover {
  background-color: #275b90;
  border-color: #275b90;
}

.btn-outline {
  background-color: transparent;
  color: #2f6fb3;
  border-color: #b7c7df;
}

.btn-outline:hover {
  background-color: #e2ecfb;
}

/* Generic sections */

.section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.section-alt {
  padding: 3rem 0;
  background-color: #f1f4fb;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 36rem;
  font-size: 0.98rem;
  color: #4b5563;
}

/* Services */

.services-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  border: 1px solid #e4e8f2;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.92rem;
  color: #4b5563;
}

/* Service area */

.service-area {
  text-align: left;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-area-list li {
  background-color: #e6eefc;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2rem;
  align-items: start;
}

.about-highlight {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #dde3f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

.about-highlight h3 {
  margin-bottom: 0.6rem;
}

.about-highlight ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

/* Gallery */

.gallery-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.gallery-grid figure {
  margin: 0;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e0e5f1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.6rem 0.8rem 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: start;
}

.contact-info p {
  margin: 0.15rem 0;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.4rem 1.4rem;
  border: 1px solid #dde3f0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 0.5rem;
  border: 1px solid #cbd5f0;
  padding: 0.5rem 0.6rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #2f6fb3;
  box-shadow: 0 0 0 1px rgba(47, 111, 179, 0.25);
}

/* Footer */

.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 1.25rem 0;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-service-area {
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none; /* simple static version; can add mobile menu later */
  }
}

/* Reviews highlight bar */

.reviews-highlight {
  background-color: #ffffff;
  border-top: 1px solid #e1e5ee;
  border-bottom: 1px solid #e1e5ee;
  padding: 2rem 0;
}

.reviews-highlight-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  justify-content: space-between;
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reviews-score-value {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.reviews-score-stars {
  font-size: 1.3rem;
  color: #f59e0b; /* star color (amber) */
}

.reviews-score-label {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.25rem;
}

.reviews-cta p {
  margin: 0 0 0.75rem;
  max-width: 26rem;
  font-size: 0.94rem;
  color: #4b5563;
}

/* Reviews carousel */

.reviews-carousel {
  margin-top: 1.75rem;
  background-color: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #dde3f0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  padding: 1.75rem 1.8rem 1.4rem;
}

.review-slide {
  display: none;
}

.review-slide.active {
  display: block;
}

.review-stars {
  font-size: 1.2rem;
  color: #f59e0b;
  margin-bottom: 0.3rem;
}

.review-text {
  font-size: 0.98rem;
  color: #374151;
  margin: 0.4rem 0 0.6rem;
}

.review-source {
  font-size: 0.86rem;
  color: #6b7280;
}

.reviews-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.1rem;
  justify-content: center;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background-color: #d1d5db;
  padding: 0;
  cursor: pointer;
}

.reviews-dot.active {
  background-color: #2f6fb3;
}

/* LOGO + HEADER LAYOUT */
.logo-with-image {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 100px;      /* adjust size if needed */
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.95rem;
  color: #555;
}


/* Responsive tweaks for reviews */

@media (max-width: 900px) {
  .reviews-highlight-inner {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .reviews-carousel {
    padding: 1.4rem 1.25rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 0 2.3rem;
  }

  .section,
  .section-alt {
    padding: 2.3rem 0;
  }

  .hero-text p,
  .section-intro {
    font-size: 0.95rem;
  }
}





