/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100..900;1,100..900&display=swap');




/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}

.app {
  min-height: 100vh;
}

main {
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #000;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #333;
}

/* Navigation */
.navigation {
  display: none;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.nav-line-left {
  flex: 1;
  height: 1px;
  background-color: #e5e5e5;
  margin-right: 3rem;
  min-width: 40px;
}

.nav-line-right {
  flex: 1;
  height: 1px;
  background-color: #e5e5e5;
  margin-left: 3rem;
  min-width: 40px;
}

.page-menu {
  text-align: center;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.about-content {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.menu-item {
  background: none;
  border: none;
  color: #444;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
  position: relative;
}

.menu-item:hover {
  color: #666;
}

.menu-item.active {
  color: #000;
  font-weight: 500;
}

.menu-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #CCCCCC;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.nav-brand {
  display: none;
}

.nav-brand h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
  font-family: 'Crimson Text', 'Times New Roman', serif;
  margin: 0;
  cursor: pointer;
}

.nav-brand button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-item {
  background: none;
  border: none;
  color: #000;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}

.nav-item:hover {
  color: #000;
}

.nav-item.active {
  color: #000;
  font-weight: 400;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 40px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Home Page */
.home {
  min-height: 100vh;
  background: #ffffff;
}

.header-section {
  background: #ffffff;
  margin-bottom: 1.5em;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.site-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.contact-info {
  margin-top: 2.0em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.contact-left,
.contact-center,
.contact-right {
  font-size: 0.90rem;
  color: #9F9F9F;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
}

.icon-email {
  position: relative;
  top: 0.12em;
  right: 0.4em;
}
.contact-left {
  text-align: left;
  flex: 1;
}

.contact-center {
  text-align: center;
  flex: 1;
}

.contact-right {
  text-align: right;
  flex: 1;
}

/* Gray divider lines */
.divider-line {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.divider-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}

/* Hero Section */
.hero-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 0;
}

.hero-image {
  width: 100%;
  margin: 0 auto;
  height: 600px;
  background-image: url("/images/home_pic.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000000;
  padding: 0 60px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

.hero-quote {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  padding-top: 60px;
  background: #ffffff;
  padding-bottom: 10px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.content-wrapper p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

/* Footer */
.site-footer {
  background: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

.footer-content p {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Page Content */
.page-content {
  min-height: calc(100vh - 80px);
  padding: 80px 0;
  background: #ffffff;
}

.page-content .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.page-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

/* Services Hero Section */
.services-hero-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 0;
}

.services-hero-image {
  width: 100%;
  margin: 0 auto;
  height: 600px;
  background-image: url("/images/services_pic.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}

/* Connect/Contact Hero Section */
.connect-hero-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 0;
}

.connect-hero-image {
  width: 100%;
  margin: 0 auto;
  height: 600px;
  background-image: url("/images/connect_pic.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact {
  min-height: calc(100vh - 80px);
  padding: 80px 0;
  background: #ffffff;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.contact-details, .location, .emergency-info {
  background: #ffffff;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-details h2, .location h2, .emergency-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-item {
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-item h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.address h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
}

.address p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.location-details p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.location-details strong {
  color: #000;
  font-weight: 500;
}

.emergency-info h3 {
  color: #000;
  font-size: 1.3rem;
}

.emergency-info p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.emergency-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emergency-info li {
  color: #333;
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.8;
}

.emergency-info strong {
  color: #000;
  font-weight: 500;
}

.contact-form-container {
  background: #ffffff;
  padding: 0;
  margin-top: 3rem;
  text-align: left;
}

.contact-form-container h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-form-container p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  font-size: 1rem;
  color: #000;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.6;
}

.btn-primary {
  background: #000;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: #000;
  color: white;
}

.faq-section {
  margin-bottom: 5rem;
  padding: 0 40px;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.faq-item {
  background: #ffffff;
  padding: 0;
  text-align: left;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* New Contact Page Layout */
.contact-page-content {
  padding: 60px 0;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.contact-two-column {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-phone {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-phone strong {
  font-weight: 600;
  color: #000;
}

.contact-office {
  margin-bottom: 1rem;
}

.contact-office p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.contact-office strong {
  font-weight: 600;
  color: #000;
}

.contact-transportation {
  margin-bottom: 1.5rem;
}

.contact-transportation p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.contact-map-container {
  margin-top: 1rem;
}

.contact-map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.map-attribution {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.contact-right-column {
  display: flex;
  flex-direction: column;
}

.contact-form-intro {
  margin-bottom: 2rem;
}

.contact-form-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-name {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-name label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.form-group-name label::after {
  content: ' (required)';
  color: #999;
  font-weight: 400;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.name-fields input {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  font-size: 1rem;
  color: #000;
  transition: border-color 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.name-fields input:focus {
  outline: none;
  border-color: #000;
}

.name-fields input::placeholder {
  color: #999;
}

.contact-form-new .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-new .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.contact-form-new .form-group label::after {
  content: ' (required)';
  color: #999;
  font-weight: 400;
}

.contact-form-new .form-group input,
.contact-form-new .form-group textarea {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  font-size: 1rem;
  color: #000;
  transition: border-color 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.contact-form-new .form-group input:focus,
.contact-form-new .form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-form-new .form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
  line-height: 1.6;
}

.contact-submit-btn {
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
  align-self: center;
  width: auto;
  min-width: 150px;
}

.contact-submit-btn:hover {
  background: #000;
  color: #ffffff;
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-submit-btn:disabled:hover {
  background: #ffffff;
  color: #000;
}

.form-message {
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Fees Content */
.fees-content {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1em;
  font-family: 'Montserrat', sans-serif;
}

/* Services Bubble Content */
.services-bubble-content {
  padding: 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
  color: #444;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.services-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  align-items: center;
}

.service-bubble {
  background: linear-gradient(to right, rgba(75, 95, 118, 0.9), rgba(105, 125, 148, 0.9));
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
    height: 70px;
    justify-content: space-between;
  }

  .nav-brand {
    display: block;
  }

  .nav-brand h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000;
    font-family: 'Crimson Text', 'Times New Roman', serif;
    margin: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e5e5;
    gap: 1.5rem;
  }

  .nav-menu-open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .welcome-content,
  .page-content .container,
  .contact-content {
    padding: 0 20px;
  }

  .header-section {
    padding: 40px 0 30px;
  }

  .site-title {
    font-size: 2rem;
  }

  .welcome-section {
    padding: 40px 0 60px;
  }

  .welcome-content h1,
  .page-content h1,
  .contact-header h1 {
    font-size: 2rem;
  }

  .page-content {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .contact-left-column {
    order: 1;
  }

  .contact-right-column {
    order: 2;
  }

  .name-fields {
    grid-template-columns: 1fr;
  }
}

/* Contact Modal Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-out;
}

.contact-modal {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.contact-modal.fade-out {
  animation: fadeOut 0.3s ease-out;
  opacity: 0;
  transform: translateY(-20px);
}

.contact-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}

.contact-modal-header-left {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  position: relative;
  top: 1px;
}

.contact-modal-header-center {
  font-size: 1.35rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  flex: 1;
  font-family: 'Montserrat', sans-serif
}

.contact-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  flex: 1;
  justify-content: flex-end;
  transition: color 0.2s ease;
}

.contact-modal-close:hover {
  color: #000;
}

.contact-modal-form {
  padding: 24px;
}

.contact-modal-section {
  margin-bottom: 32px;
}

.contact-modal-section:last-of-type {
  margin-bottom: 0;
}

.contact-modal-section-title {
  font-size: 1.18rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact-modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-modal-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-modal-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.required-asterisk {
  color: #d32f2f;
}

.contact-modal-form-group input,
.contact-modal-form-group select,
.contact-modal-form-group textarea {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #000;
  transition: border-color 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}

.contact-modal-state-select {
  width: 50%;
  max-width: 300px;
}

.contact-modal-form-group input:focus,
.contact-modal-form-group select:focus,
.contact-modal-form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-modal-form-group input::placeholder {
  color: #999;
}

.contact-modal-form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.6;
}

.contact-modal-helper-text {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

.contact-modal-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.contact-modal-submit-btn {
  background: #000;
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.contact-modal-submit-btn:hover {
  background: #333;
}

.contact-modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-modal-submit-btn:disabled:hover {
  background: #000;
}

.contact-modal-success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  animation: slideUp 0.3s ease-out;
}

@media (max-width: 768px) {
  .contact-modal {
    max-width: 100%;
    max-height: 95vh;
  }

  .contact-modal-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-modal-header {
    padding: 16px 20px;
  }

  .contact-modal-form {
    padding: 20px;
  }

  .contact-modal-header-left {
    font-size: 0.9rem;
  }

  .contact-modal-header-center {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .site-title,
  .welcome-content h1,
  .page-content h1,
  .contact-header h1 {
    font-size: 1.75rem;
  }

  .welcome-content p,
  .page-content p {
    font-size: 0.95rem;
  }

  .contact-modal-overlay {
    padding: 10px;
  }

  .contact-modal-header {
    padding: 12px 16px;
  }

  .contact-modal-form {
    padding: 16px;
  }
}
