/* ============================================
   BASIC PAGE SETUP
   ============================================ */

html, body {
  margin: 0;
  padding: 0;
}

/* ============================================
   TOP NAVIGATION BAR (HEADER)
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #1a2733;
    z-index: 1000;
    box-sizing: border-box;
    padding: 1.5vh 2rem;
}

.header-nav {
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Navigation links on left and right sides */
.nav-left,
.nav-right {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Company logo in the header */
.front-page-logo {
    height: 7.5vh;
    width: auto;
    padding-top: 0.3vh;
}

/* All navigation menu items */
header nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual navigation items */
header nav ul li {
    margin: 0 1.5rem;
}

/* Navigation link text styling */
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Segoe UI', 'Trebuchet MS', Arial, sans-serif;
    transition: color 0.2s;
}

/* Navigation link hover effect */
header nav ul li a:hover {
    color: #ffb347;
}




.contact-section {
  padding: 8rem 2rem 4rem; /* push below navbar */
  background-color: #f4f7fa;
  min-height: 90vh; /* make it fill almost the whole screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.intro-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #444;
  max-width: 700px;
}

/* Grid makes cards fill more space */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem; /* bigger padding */
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.call-us-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.call-us-number {
    display: flex;
    padding-left: 0.8rem;
    padding-top: 0.2rem;
    font-size: 1.4rem;    
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map {
  align-self: center;
  display: flex;
  width: 100%;
  height: 400px;


}













































/* ============================================
   FOOTER SECTION
   ============================================ */

/* Main footer container */
.footer {
    background-color: #1a2733;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    text-align: center;
}

/* Facebook section in footer */
.facebook  {
    padding-top: 18px;
}

/* Facebook button styling */
.facebook button {
    font-size: 1.2rem;
    background-color: #1a2733;
    color: white;
    border-color: #1a2733;
    box-shadow: 0 2px 2px black;
    border-radius: 50px;
}

/* Phone number text */
.call-us-text {
    font-size: 1.2rem;
    
}

.call-us-text:hover,
.facebook button:hover,
.email-text:hover {
    color: #ffb347;
}
   

/* Email text */
.email-text {
    font-size: 1.3rem;
}

/* Copyright text styling */
.copyright {
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #2a3744;
    color: #ccc;
    order: 999; /* This makes it appear last */
}

.credit-text {
    text-align: right;
    font-size: 0.7rem;
}