:root {
    --deep-twilight: #03045eff;
    --french-blue: #023e8aff;
    --bright-teal-blue: #0077b6ff;
    --blue-green: #0096c7ff;
    --turquoise-surf: #00b4d8ff;
    --sky-aqua: #48cae4ff;
    --frosted-blue: #90e0efff;
    --frosted-blue-2: #ade8f4ff;
    --light-cyan: #caf0f8ff;
    --black: #000000ff;
    --white: #ffffffff;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
}

.text-brand {
    color: var(--french-blue) !important;
}
.bg-brand {
    background-color: var(--deep-twilight) !important;
}
.bg-brand-secondary {
    background-color: var(--bright-teal-blue) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--deep-twilight) 0%, var(--bright-teal-blue) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 3rem;
    color: var(--bright-teal-blue);
    margin-bottom: 15px;
}
.service-title {
    font-weight: 600;
    color: var(--deep-twilight);
}

.cta-section {
    background-color: var(--light-cyan);
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}
.cta-section h2 {
    color: var(--deep-twilight);
    font-weight: 700;
}
.btn-brand {
    background-color: var(--french-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.btn-brand:hover {
    background-color: var(--deep-twilight);
    color: var(--white);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--blue-green);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--frosted-blue);
  border-top-color: var(--deep-twilight);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
