/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f4f4f9 0%, #e0f7fa 100%);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #0056b3;
}

/* Modern Header */
.site-header {
  background: #1e3a8a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo-link {
  display: flex;
  align-items: center;
}
.header-logo {
  height: 50px;
  width: auto;
  border-radius: 4px;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.header-info p,
.header-info a {
  color: #fff;
  font-weight: 500;
  margin: 0;
}
.header-info i {
  margin-right: 5px;
  color: #93c5fd;
}
.header-phone {
  text-decoration: none;
  transition: color 0.3s;
}
.header-phone:hover {
  color: #93c5fd;
}
.header-phone-mobile {
  display: none;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.header-phone-mobile:hover {
  color: #93c5fd;
}
.header-phone-mobile i {
  margin-right: 5px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #93c5fd;
}
.btn-login {
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}
.btn-login:hover {
  color: #93c5fd;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
  padding: 5px;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: black;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: black;
}

/* Large Logo Showcase */
.logo-showcase {
  padding: 60px 0;
  background-color: #e8f0fe;
  text-align: center;
}
.logo-showcase img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services */
.services {
  padding: 60px 0;
  background-color: #f1f1f1;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card i {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 10px;
}
.note {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 20px;
}

/* Team */
.team {
  padding: 60px 0;
}
.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}
.member h3 {
  margin-bottom: 5px;
}
.member p {
  font-size: 0.95em;
  color: #555;
}

/* Contact */
.contact {
  padding: 60px 0;
  background-color: #e9ecef;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-cta {
  text-align: center;
  margin-bottom: 20px;
}
.contact-info {
  text-align: center;
}
.contact-info p {
  margin-bottom: 10px;
  font-size: 1em;
}
.contact-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #007BFF;
}
.contact-info i {
  margin-right: 8px;
}
.info {
  flex: 1;
}
.info p {
  margin-bottom: 10px;
  font-size: 1em;
}
.info i {
  margin-right: 8px;
}
.form {
  flex: 1;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.map iframe {
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-info {
    display: none;
  }
  .header-phone-mobile {
    display: flex;
    align-items: center;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.active {
    max-height: 300px;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .main-nav a {
    display: block;
    padding: 10px 0;
    color: #333;
  }
  .main-nav a:hover {
    color: #1e3a8a;
  }
  .btn-login {
    text-align: center;
    color: #333;
  }
  .btn-login:hover {
    color: #1e3a8a;
  }
  .hero h1 {
    font-size: 1.8em;
  }
  .hero p {
    font-size: 1em;
  }
  .contact-cta {
    margin-bottom: 15px;
  }
  .contact-info p {
    font-size: 0.9em;
  }
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
  background: #f9fafb;
  padding: 3rem 0;
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 2rem;
}
.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.carousel-wrapper { position: relative; }
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
  margin-bottom: 0;
  z-index: 10;
}
.carousel-btn {
  background: #2563eb; color: white; border: none;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: auto;
}
.carousel-btn:hover { background: #1d4ed8; }
@media (max-width: 767px) {
  .carousel-nav { display: none; }
}
.testimonial-card {
  flex: 0 0 85%;
  min-width: 260px;
  max-width: 400px;
  flex-shrink: 0;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  text-align: left;
}
@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); min-width: 280px; }
}
@media (min-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(33.333% - 1rem); }
}
.testimonial-card .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.5rem; }
.testimonial-card .title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; color: #111; }
.testimonial-card .body { font-size: 0.85rem; color: #4b5563; line-height: 1.5; margin-bottom: 0.75rem; }
.testimonial-card .author { font-size: 0.8rem; color: #6b7280; font-style: italic; }
.review-cta { margin-top: 0.5rem; }
.review-cta .btn { display: inline-block; padding: 0.75rem 2rem; }

/* ── Leave a Review ──────────────────────────────────── */
.leave-review {
  background: white;
  padding: 3rem 0;
  text-align: center;
}
.leave-review h2 { margin-bottom: 0.5rem; }
.leave-review p { color: #6b7280; margin-bottom: 1.5rem; }
.review-form {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}
.form-row { display: flex; gap: 1rem; }
.form-row input { flex: 1; }
.review-form textarea { resize: vertical; }

/* ── Star Rating ─────────────────────────────────────── */
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  direction: rtl;
}
.star-rating .star-label {
  direction: ltr;
  font-size: 0.9rem;
  color: #374151;
  margin-right: 0.75rem;
}
.star-rating input[type="radio"] { display: none; }
.star-rating label {
  cursor: pointer;
  font-size: 1.5rem;
  color: #d1d5db;
  transition: color 0.15s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: #f59e0b; }
