/* --- CTA Button --- */
.cta-button {
    background-color: var(--brand-red);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b71c1c; /* A slightly darker red on hover */
}

/* --- Modal (Pop-up) Styles --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; /* Sits on top of everything */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); /* Semi-transparent black background */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto; /* Centered vertically and horizontally */
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: left; /* Aligns form text to the left */
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

/* --- Form Input Styles --- */
#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-family: inherit;
}

.submit-btn {
    background-color: var(--brand-blue);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #062340;
}

#formStatus {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}
/* ==========================================================================
   1. BUTTON STYLES (CTA & Form Submit)
   ========================================================================== */

/* Main Call To Action (CTA) and Submit Buttons */
.cta-button,
button[type="submit"],
.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0056b3; /* Replace with your primary brand color */
  color: #ffffff !important;   /* Visible white text on dark background */
  font-weight: 600;
  border: 2px solid #0056b3;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Hover state (maintains contrast) */
.cta-button:hover,
button[type="submit"]:hover,
.btn-primary:hover {
  background-color: #003d80; /* Slightly darker shade on hover */
  border-color: #003d80;
  color: #ffffff !important;
}


/* ==========================================================================
   2. SERVICE BULLETS & TEXT STYLING
   ========================================================================== */

/* Ensure text beneath the logo has clear visibility */
.hero-subtext,
.service-description {
  color: #333333; /* Strong dark neutral color for readability */
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Service Bullet List Container */
.service-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

/* Accent Color Bar on Service List Items */
.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #222222;
  font-size: 1rem;
  /* Left accent bar */
  border-left: 4px solid #0056b3; /* Accent color bar width & color */
}