/* =======================================================
   Redesigned style.css — Beginner Friendly Version
   Theme: Deep Royal Navy + Gold Accent
   Fonts: Inter (Body), Playfair Display (Headings)
=========================================================*/

/* ---------- COLOR VARIABLES ---------- */
:root {
  --navy: #0A1F44;       /* Deep royal navy */
  --gold: #C9A94B;       /* Soft golden accent */
  --muted: #6b7280;      /* Muted gray text */
  --soft: #f6f7fb;       /* Soft background */
  --card-bg: #ffffff;    /* Card white */
  --radius: 12px;        /* Rounded corners */
  --max-width: 1150px;   /* Page content width */
}

/* ---------- BASIC RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--soft);
  color: #0f1724;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */
:root {
  --navy: #0a1f44;
  --radius: 10px;
  --max-width: 1200px;
}

/* Navbar Base */
/* 🌐 Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🌟 Logo */
.logo {
  height: 60px;
  transition: transform 0.3s;
}
.logo:hover {
  transform: scale(1.05);
}

/* 📞 Desktop Call Button */
.contact-cta {
  background: var(--navy, #0a1f44);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-cta:hover {
  transform: translateY(-3px);
  background: var(--accent, #0056b3);
}

/* Hide duplicate button on desktop */
.mobile-call-btn {
  display: none;
}

/* 🧭 Navigation Links (Desktop) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--navy, #0a1f44);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent, #C9A94B);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--accent, #04223a);
}

/* 💼 Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  padding-bottom: 4px;
}



.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 10;
}

.dropdown-menu a {
  padding: 10px 15px;
  color: var(--navy, #0a1f44);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(10, 31, 68, 0.05);
  color: var(--accent, #0056b3);
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* 🧩 Toggle dropdown */
.dropdown.active .dropdown-menu {
  display: flex;
}

/* 🍔 Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--navy, #0a1f44);
  border-radius: 3px;
  transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
/* Sidebar Close Button */
.close-btn {
  display: none;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 25px;
    gap: 18px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy, #0a1f44);
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
  }

  /* Animation delay for staggered effect */
  .nav-links.active a:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { animation-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { animation-delay: 0.3s; }
  .nav-links.active a:nth-child(4) { animation-delay: 0.4s; }
  .nav-links.active a:nth-child(5) { animation-delay: 0.5s; }
  .nav-links.active a:nth-child(6) { animation-delay: 0.6s; }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop button on mobile */
  .desktop-cta {
    display: none;
  }

  /* 📞 Mobile Call Button */
  .mobile-call-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    background: var(--navy, #0a1f44);
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  .mobile-call-btn:hover {
    /* background: var(--accent, #0056b3); */
  }

  /* 🧭 Dropdown inside sidebar */
  .dropdown-menu {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 5px;
    display: none;
    flex-direction: column;
    width: 100%;
    padding-left: 15px;
  }

  .dropdown-menu a {
    border-bottom: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

    .close-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 32px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
  }
  .mobile-call-btn{
    color: #eee;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

/* Background Image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://t4.ftcdn.net/jpg/06/69/95/09/360_F_669950938_7EGCde3piThlCL3c4TLC76N50KJRW66d.jpg")
    center/cover no-repeat;
  filter: brightness(60%);
  z-index: 0;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.7), rgba(10, 31, 68, 0.4));
  z-index: 1;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width, 1200px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  animation: fadeInUp 1s ease forwards;
}

/* Left Text Content */
.hero-content {
  flex: 1 1 450px;
  animation: fadeInLeft 1.2s ease forwards;
  text-align: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-sub {
  margin: 0 auto;
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.6;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
      justify-content: center;  
}

.btn {
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--gold, #d4b24d), #b89b3e);
  color: var(--navy, #0a1f44);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.btn.primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn.secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}


/* For mobile phones */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    padding: 60px 15px;
  }
  .hero-content{
    flex: 0;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    animation: fadeInUp 1s ease forwards;
  }
  .hero-figure {
    max-width: 80%;
    animation: fadeInUp 1s ease forwards;
  }
  .hero-sub {
    margin: 0 auto 25px;
  }
  .hero-actions {
    justify-content: center;
  }
}


/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: "Playfair Display", serif;
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 40px 0 20px;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #C9A94B; /* gold accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.about-row.reverse {
  flex-direction: row-reverse;
}

.about-img {
  flex: 1 1 45%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.about-img:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 45%;
}
.about-text h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-row, .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- SERVICES ---------- */
.services {
  background: #fff;
  padding: 60px 20px;
}
.services-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  
}

.service-box {
  background: var(--card-bg);
  width: 450px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(10, 31, 68, 0.05);
  transition: 0.3s;
}
.service-box:hover {
  transform: translateY(-5px);
}

.service-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 200px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-box h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}
.service-box p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Existing service styles remain unchanged */

/* --- Action Buttons Below Each Card --- */
.service-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Call Button */
.call-btn {
  background-color: var(--navy, #0a1f44);
  color: #fff;
  border: 1px solid var(--navy, #0a1f44);
}
.call-btn:hover {
  background-color: #003a8b;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #069c3d;
  color: #fff;
  border: 1px solid #1ebe5d;
}
.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* Icons Styling */
.btn i {
  font-size: 1rem;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .service-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 80%;
    justify-content: center;
  }
}


/* ---------- WHY CHOOSE US ---------- */
.why-choose-us {
  background: var(--soft);
  padding: 60px 20px;
}

.choose-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.choose-image,
.choose-content {
  flex-basis: 47%;
}

.choose-image img {
  width: 100%;
  border-radius: var(--radius);
}

.choose-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  margin-bottom: 30px;
}

.choose-content ul {
  list-style: none;
  padding: 0;
}

.choose-content li {
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
  padding-left: 20px;
}
.choose-content li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* For mobile devices */
@media (max-width: 768px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
  }

  .choose-image,
  .choose-content {
    flex-basis: 100%;
  }

  .choose-image img {
    width: 90%;
    margin: 0 auto;
  }

  .choose-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .choose-content li {
    font-size: 0.95rem;
    padding-left: 0;
  }

  .choose-content li::before {
    content: none;
  }
}

/* For extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 15px;
  }

  .choose-content h2 {
    font-size: 1.4rem;
  }

  .choose-content li {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }

  .choose-image img {
    width: 100%;
  }
}


/* ---------- CONTACT ---------- */
.contact-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.contact-info,
.contact-hours {
  flex: 1 1 45%;
  text-align: left;
}
.contact-info h3,
.contact-hours h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-info p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .contact-info,
  .contact-hours {
    text-align: center;
  }
}

/* ---------- SIMPLE ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUST APPROACH SECTION ===== */

.trust-approach-section {
  padding: 60px 20px;
  background-color: #f8fafc; /* very light background */
}

/* Section title */
.trust-approach-title {
  text-align: center;
  color: #0A1F44; /* deep navy */
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}

/* Decorative underline below heading */
.trust-approach-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #C9A94B; /* gold accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Container for both boxes */
.trust-approach-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Each box */
.trust-approach-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(10, 31, 68, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-approach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(10, 31, 68, 0.1);
}

/* Box heading */
.trust-approach-box h3 {
  font-family: 'Playfair Display', serif;
  color: #0A1F44;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

/* Image wrapper */
.trust-image-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.trust-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trust-approach-box:hover .trust-image-wrapper img {
  transform: scale(1.05);
}

/* Paragraph text */
.trust-approach-box p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .trust-approach-container {
    grid-template-columns: 1fr; /* single column on mobile */
  }

  .trust-approach-box {
    text-align: center;
  }

  .trust-image-wrapper {
    height: 200px;
  }
}


/* ---------- SUBSCRIBE SECTION ---------- */
.subscribe-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subscribe-container {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold, #d4af37);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.subscribe-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe-form input {
  width: 280px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-form input:focus {
  border-color: var(--gold, #d4af37);
  background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
  background: var(--gold, #d4af37);
  color: #0a1f44;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0px rgba(212, 175, 55, 0.5);
}
.subscribe-btn:hover {
  background: #e5c76b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .subscribe-title {
    font-size: 1.8rem;
  }
  .subscribe-text {
    font-size: 0.95rem;
  }
  .subscribe-form input {
    width: 100%;
  }
}


/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, #07132a 0%, #0a1f44 100%);
  color: #fff;
  padding: 80px 8% 30px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* FLEXBOX VERSION */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

/* Each section will auto-size similar to grid columns */
.footer-section {
  flex: 1 1 260px;
  max-width: 350px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--gold, #d4af37);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-phone {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  background: var(--gold, #d4af37);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-phone:hover {
  background: #fff;
  color: #0a1f44;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: var(--gold, #d4af37);
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .powered {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.contact-section h2 {
  color: var(--navy);
  margin-bottom: 10px;
}
.subtitle {
  color: var(--muted);
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.contact-info,
.contact-hours {
  flex: 1 1 40%;
  text-align: left;
  max-width: 400px;
  text-align: center;
}
.contact-info h3,
.contact-hours h3 {
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}
.contact-info p,
.contact-hours p {
  color: var(--muted);
  text-align: center;
}
@media (max-width: 900px) {
  .contact-info,
  .contact-hours {
    text-align: center;
  }
}

a.phone{
  color: #eee;
  text-decoration: none;
  font-weight: 600;
}

@media(max-width: 500px){
  .trust-approach-section, .services{
    padding: 30px 10px;
  }
}