/* Reset default margins */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333333;
}

/* Header styles */
header {
  background-color: #1c2a44;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

header .logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  margin: 10px 0 5px;
  font-size: 2em;
}

header p {
  margin: 0 0 15px;
  font-style: italic;
}

nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content styling */
main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main h2 {
  text-align: center;
  margin-top: 30px;
}

section {
  padding: 20px;
}

section img {
  width: 200px;
  height: auto;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer styles */
footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 60px;
  font-size: 0.9em;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-weight: bold;
  font-size: 0.95rem;
  color: #333;
}

.required {
  color: #c0392b;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #0074D9;
  box-shadow: 0 0 0 3px rgba(0, 116, 217, 0.15);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-error {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 2px;
}

.contact-form button {
  background-color: #004b6b;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 6px;
}

.contact-form button:hover {
  background-color: #006a95;
}

.contact-form button:disabled {
  background-color: #999;
  cursor: not-allowed;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.97rem;
  line-height: 1.5;
  margin-top: 10px;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.97rem;
  line-height: 1.5;
  margin-top: 10px;
}

.form-error a {
  color: #721c24;
  font-weight: bold;
}


.contact-info {
  margin-top: 20px;
  line-height: 1.6em;
}

.note {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}
.gallery-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  color: #555;
  line-height: 1.65;
  font-size: 0.97rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0 4px 10px;
}

.gallery-item {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c2a44;
  text-align: center;
  border-top: 1px solid #eef0f3;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 0.9rem;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .gallery-item img {
    height: 160px;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 80px;
  }
}
.quote-button {
  background-color: #0074D9;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #005fa3;
}
@media (max-width: 600px) {
  .quote-button {
    display: block;
    margin: 10px auto;
    width: 90%;
    text-align: center;
  }
}

/* Homepage services grid */
.services-section {
  padding: 30px 20px 40px;
  border-top: 1px solid #e8e8e8;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #1c2a44;
}

.services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  color: #555;
  line-height: 1.65;
  font-size: 0.97rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #1c2a44;
  border-radius: 10px;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #1c2a44;
}

.service-card p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  flex: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: bold;
  color: #0074D9;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual service page styles */
.service-hero {
  background-color: #1c2a44;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 0;
}

.service-hero h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  color: #fff;
}

.service-hero-sub {
  margin: 0;
  font-size: 0.95rem;
  color: #a8bbd4;
}

.service-content {
  padding: 30px 20px 40px;
}

.service-intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
  max-width: 820px;
}

.service-content h3 {
  font-size: 1.15rem;
  color: #1c2a44;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e2e8f0;
}

.service-list {
  padding-left: 20px;
  margin: 0 0 10px;
}

.service-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #444;
  font-size: 0.97rem;
}

.service-cta {
  margin-top: 36px;
  background-color: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0074D9;
  border-radius: 10px;
  padding: 24px 24px 20px;
}

.service-cta p {
  margin: 0 0 14px;
  color: #444;
  line-height: 1.6;
}

.service-contact {
  margin-top: 14px !important;
  font-size: 0.92rem;
  color: #555 !important;
}

.service-contact a {
  color: #0074D9;
  font-weight: bold;
  text-decoration: none;
}

.service-contact a:hover {
  text-decoration: underline;
}

/* Trust / Why Choose section */
.trust {
  padding: 30px 20px 40px;
  border-top: 1px solid #e8e8e8;
}

.trust h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #1c2a44;
}

.trust-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #555;
  line-height: 1.65;
  font-size: 0.97rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  background-color: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px 20px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background-color: #1c2a44;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 0.97rem;
  color: #1c2a44;
}

.trust-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Promotions section */
.promotions {
  padding: 30px 20px 40px;
  border-top: 1px solid #e8e8e8;
}

.promotions h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: #1c2a44;
}

.promo-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.promo-featured {
  border-left: 5px solid #1c2a44;
  background-color: #f7f9fc;
}

.promo-badge {
  display: inline-block;
  background-color: #1c2a44;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.promo-featured h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #1c2a44;
}

.promo-featured p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #444;
}

.promo-good-for {
  font-size: 0.92rem;
  color: #555;
}

.promo-cta {
  display: inline-block;
  margin-top: 16px;
  background-color: #0074D9;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.97rem;
  transition: background-color 0.3s ease;
}

.promo-cta:hover {
  background-color: #005fa3;
}

.promo-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-small {
  border-top: 3px solid #0074D9;
}

.promo-small h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #1c2a44;
}

.promo-small p {
  margin: 0 0 14px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #555;
}

.promo-link {
  color: #0074D9;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
}

.promo-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .promo-secondary-grid {
    grid-template-columns: 1fr;
  }

  .promo-cta {
    display: block;
    text-align: center;
  }
}

/* Service Areas section */
.service-areas {
  padding: 30px 20px 40px;
  border-top: 1px solid #e8e8e8;
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #1c2a44;
}

.service-areas-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #555;
  line-height: 1.65;
  font-size: 0.97rem;
}

.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.area-tag {
  background-color: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c2a44;
}

.service-areas-cta {
  text-align: center;
}

.service-areas-cta p {
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Thank You page */
.thankyou-section {
  padding: 60px 30px;
  text-align: center;
}

.thankyou-icon {
  width: 56px;
  height: 56px;
  background-color: #1c2a44;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.thankyou-section h2 {
  font-size: 2rem;
  color: #1c2a44;
  margin: 0 0 16px;
}

.thankyou-primary {
  font-size: 1.05rem;
  color: #333;
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.65;
}

.thankyou-secondary {
  font-size: 0.97rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.thankyou-secondary a {
  color: #1c2a44;
  font-weight: 600;
}

.thankyou-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .thankyou-buttons {
    flex-direction: column;
    align-items: center;
  }
  .thankyou-buttons .hero-btn-primary,
  .thankyou-buttons .hero-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* Hero section */
.hero {
  padding: 48px 30px 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.hero h2 {
  font-size: 1.85rem;
  color: #1c2a44;
  margin: 0 0 16px;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  background-color: #1c2a44;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.hero-btn-primary:hover {
  background-color: #2e4068;
}

.hero-btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: #1c2a44;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #1c2a44;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-btn-secondary:hover {
  background-color: #1c2a44;
  color: #fff;
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* Sticky mobile call button */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1c2a44;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px;
  z-index: 999;
  letter-spacing: 0.02em;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .sticky-call-btn {
    display: block;
  }
  /* Add bottom padding so sticky bar doesn't cover content */
  body {
    padding-bottom: 56px;
  }
}

/* Customer Reviews section */
.reviews {
  padding: 30px 20px 40px;
  border-top: 1px solid #e8e8e8;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #1c2a44;
}

.reviews-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #555;
  line-height: 1.65;
  font-size: 0.97rem;
}

.reviews-placeholder {
  background-color: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.reviews-placeholder-icon {
  font-size: 2.4rem;
  color: #1c2a44;
  margin-bottom: 14px;
  letter-spacing: 4px;
}

.reviews-placeholder p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.btn-review {
  display: inline-block;
  background-color: #1c2a44;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-review:hover {
  background-color: #2e4068;
}

@media (max-width: 500px) {
  .reviews-placeholder {
    padding: 28px 18px;
  }
}
