/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header / Navigation */
header {
  background: #ffffff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-logo {
  height: 100px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

nav a {
  color: #0d2645;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ca1f31;
}

/* Hero Banner */
.hero {
  background: url('../img/hero.jpg') no-repeat center center/cover;
  height: 70vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #ca1f31;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #0d2645;
}

/* Services Section */
.services-overview {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.services-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #164273;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.service-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px #edede8;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item h3 {
  padding: 1rem;
  background: #f1b716;
  color: #0d2645;
  margin: 0;
}

.service-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Reviews Section */

.reviews-section {
  margin: 40px auto;
  padding: 30px;
  background: #e6f0ff;          /* Soft blue */
  border-radius: 12px;
  border: 1px solid #cce0ff;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.sociablekit-embed, .sk-review-item {   /* Target widget elements */
  background: white !important;
  border: 1px solid #a3cfff !important;
  border-radius: 8px !important;
  padding: 20px !important;
  box-shadow: 0 4px 12px rgba(0, 100, 255, 0.1) !important;
}


/* Footer */
footer {
  background: #0d2645;
  color: white;
  text-align: center;
  padding: 2rem;
}

.footer-content p {
  margin: 0.5rem 0;
}

.footer-content a {
  color: #f1b716;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }

  .site-logo {
    height: 100px;
    max-width: 250px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}
