* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
/* ========== HEADER ========== */
header {
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 3px solid #2c5aa0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

/* ========== LOGO - BOLDER ========== */
header > div > a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

header > div > a span {
  font-size: 2.5rem;
  background: #2c5aa0;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}

header > div > a {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a3d7a;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ========== NAVIGATION - BOLDER ========== */
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}

nav a:hover {
  color: #2c5aa0;
}

/* Active link underline */
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2c5aa0;
  border-radius: 2px;
}

/* ========== PHONE BUTTON - MORE PROMINENT ========== */
nav ul li:last-child a {
  background: linear-gradient(135deg, #2c5aa0, #1a3d7a);
  color: white !important;
  padding: 14px 28px;
  border-radius: 35px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 6px 15px rgba(44, 90, 160, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

nav ul li:last-child a:hover {
  background: linear-gradient(135deg, #1a3d7a, #0d2b5a);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(44, 90, 160, 0.5);
}

/* Phone icon in button */
nav ul li:last-child a::before {
  content: '📞';
  font-size: 1.4rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('img/city.jpg') center/cover no-repeat;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-button {
  display: inline-block;
  background: #2c5aa0;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.hero-button:hover {
  background: #1a3d7a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* MAIN CONTENT */
main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

main h1 {
  color: #2c5aa0;
  margin-bottom: 20px;
}

main p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  nav ul {
    gap: 25px;
  }
  
  header > div > a {
    font-size: 1.8rem;
  }
  
  header > div > a span {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  header > div {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  header > div > a {
    font-size: 1.6rem;
  }
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 80px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #1a3d7a;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #2c5aa0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3d7a;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  border-left: 6px solid #2c5aa0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
  transition: left 0.7s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-notice {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 2px dashed #2c5aa0;
  font-size: 1.1rem;
  color: #1a3d7a;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Testimonials SECTION ========== */
.testimonials {
  padding: 80px 20px;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2c5aa0;
}

.stars {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.customer {
  font-weight: 600;
  color: #2c5aa0;
  text-align: right;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s;
  border-left: 5px solid #2c5aa0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 2.5rem;
  background: #e6f0ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #1a3d7a;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.contact-details address,
.contact-details p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.phone-number a {
  color: #2c5aa0;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  transition: color 0.3s;
}

.phone-number a:hover {
  color: #1a3d7a;
  text-decoration: underline;
}

.call-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

.hours p {
  margin-bottom: 8px;
}

.hours strong {
  color: #1a3d7a;
}

.emergency-note {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 10px 15px;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #856404;
}

.map-link {
  display: inline-block;
  background: #2c5aa0;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s;
}

.map-link:hover {
  background: #1a3d7a;
}

/* Map Container */
.map-container {
  height: 100%;
}

.map-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-top: 3px solid #2c5aa0;
}

.map-overlay h4 {
  color: #1a3d7a;
  margin-bottom: 10px;
}

.map-overlay p {
  color: #555;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 12px;
  border: 3px solid #2c5aa0;
  margin-top: 50px;
  font-size: 1.2rem;
  color: #1a3d7a;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-image img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
  
  .map-overlay {
    position: relative;
    background: white;
  }
}

/* Footer  */
.site-footer {
  background: #1a3d7a;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.site-footer p {
  margin: 10px 0;
  color: #ccc;
}

.site-footer a {
  color: white;
}
/* Footer complete*/

/* ========== MOBILE LOGO PROMINENCE FIX ========== */
@media (max-width: 768px) {
  /* Make logo larger than hero text */
  header > div > a {
    font-size: 2.2rem !important;
  }
  
  /* Make hero text smaller than logo */
  .hero h1 {
    font-size: 2rem !important;
  }
}
