:root {
  --oak-green: #2d4739;
  --oak-brown: #8b5e3c;
  --light-tan: #f4f1ea;
  --white: #ffffff;
  --dark-gray: #1a1a1a;
  --text-gray: #b0b0b0;
}



:root {
  /* Core Brand Palette */
  --brand-deep: #3A0063;    /* Royal Plum (Authority/Heritage) */
  --brand-saffron: #FFD000; /* Primary Action (Clarity/Urgency) */
  --brand-oak: #AD7340;     /* Natural Wood Tone (Reliability) */
  --brand-alert: #FF4D29;   /* High-Contrast Warning/Sales Trigger */
  --brand-bright: #FFFFFF;  /* Pure Canvas */

  /* Plum Tints & Shades */
  --plum-900: #210038;
  --plum-700: #3A0063; /* Base */
  --plum-500: #5E2587;
  --plum-100: #F5F0FA;

  /* Saffron Tints & Shades */
  --saffron-900: #CCA600;
  --saffron-500: #FFD000; /* Base */
  --saffron-100: #FFF9E0;

  /* Oak Tints & Shades */
  --oak-800: #7A512D;
  --oak-500: #AD7340; /* Base */
  --oak-100: #F7F1EB;

  /* Alert Tints & Shades */
  --alert-700: #CC3D20;
  --alert-500: #FF4D29; /* Base */
  --alert-100: #FFEBE8;

  /* UI Neutral Grays (Essential for Balance) */
  --neutral-900: #1A1A1A;
  --neutral-400: #A3A3A3;
  --neutral-100: #F4F4F4;

  /* Text & Content Roles */
  --text-main: #1A1A1B;     /* Off-black for better readability than pure black */
  --text-muted: #575757;    /* For secondary info/subtitles */
  --text-on-dark: #FFFFFF;  /* For use on Purple or Oak backgrounds */
  --text-accent: #3A0063;   /* Using the Purple for emphasized text */

  /* UI Functional Roles */
  --bg-main: var(--brand-bright);
  --bg-offset: #F9F7F2;      /* A slight "parchment" off-white for sections */
  --border-subtle: rgba(58, 0, 99, 0.1); /* Transparent purple border */
  
  /* Shadow Systems (Architectural Depth) */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px rgba(58, 0, 99, 0.12); /* Purple-tinted shadow */
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.all-caps {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Form Styling */
.contact-form-section {
  background-color: var(--brand-deep);
  padding: 80px 20px;
  text-align: center;
}



.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--brand-bright);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 16px;
  border-top: 8px solid var(--brand-oak); /* Thick oak "beam" across the top */
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  
}

.form-container h2 {
  color: var(--brand-saffron);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.form-container p {
  margin: 0 auto 40px;
  max-width: 600px;
  color: var(--brand-deep);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.lead-form input, 
.lead-form select, 
.lead-form textarea {
  font-family: 'Inter', sans-serif;
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  background-color: var(--brand-deep);
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}



.submit-btn {
  margin-top: 1.2rem;
  width: 100%;
  padding: 1.1rem; /* Slightly larger for better mobile tap target */
  
  background: var(--saffron-500); /* Or --alert-500 */
  color: var(--brand-deep); /* White text is usually better on red for contrast */
  
  border: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase; /* Adds an authoritative feel */
  letter-spacing: 0.5px;
  
  border-radius: 8px;
  cursor: pointer;
  
  /* Depth & Animation */
  transition: all 0.3s ease;
  box-shadow: 0 4px 0px var(--saffron-900); /* Darker shade of alert for a '3D' base */
}

.submit-btn:hover {
  background: var(--saffron-500); /* A slightly brighter tint */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--plum-100);
}

/* Footer Styling */
.main-footer {
  background-color: var(--plum-900);
  color: var(--white);
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.main-footer .footer-col img {
  width: clamp(200px, 20%, 200px); /* scales between 120px and 200px based on screen */
  height: auto;
}

/* Fix spacing between footer logo and text */
.footer-col img {
  display: block;
  margin-bottom: clamp(18px, 3vw, 28px);
}


.legacy-text {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Remove Bullets */
.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-bullets li {
  margin-bottom: 15px;
}

.no-bullets li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.no-bullets li a:hover {
  color: var(--brand-saffron);
}

address {
  font-style: normal;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background: var(--saffron-500);
  color: var(--plum-500);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--saffron-900);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid #333;
  padding-top: 25px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.footer-bottom a {
  color: var(--text-gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .footer-container {
    text-align: center;
  }

  /* Center each footer column */
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center logo */
  .footer-col img {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center list */
  .no-bullets {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}



/* Hide mobile nav by default */
.mobile-nav {
  display: none;
}

/* Call Now button styles */
.call-btn {
  display: block;
  width: 100vw;       /* full viewport width */
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #28a745; 
  color: #fff;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.call-btn:hover {
  background-color: #218838;
}

/* Show only on mobile devices */
@media screen and (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

/* Ensure button is hidden on larger screens */
@media screen and (min-width: 769px) {
  .call-btn {
    display: none;
  }
}
