/* Concrete Plano TX - Stylesheet */
:root {
  --primary-color: #4a4a4a;
  --secondary-color: #d4a574;
  --accent-color: #8b4513;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
}

/* Header & Navigation */
header {
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
  position: relative;
}

.header-container {
  max-width: 900px;
  margin: 0;
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo img {
  display: block;
  max-width: 300px;
  height: auto;
}

.logo:hover {
  opacity: 0.85;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

nav a:hover {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 250px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--bg-white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs-list li {
  color: var(--text-light);
}

.breadcrumbs-list a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumbs-list a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 60vh;
}

/* Hero Section */
.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 1.5rem 2rem 4rem;
  text-align: center;
  margin-bottom: 3rem;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover {
  background-color: var(--bg-white);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
  background-color: transparent;
  border-color: var(--bg-white);
}

.cta-button.secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.phone-cta {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Grid Layouts */
.services-grid, .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card, .location-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover, .location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card h3, .location-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p, .location-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Forms */
.form-container {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Trust Elements */
.trust-elements {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
}

.trust-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.trust-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 12px;
}

.testimonial {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testimonial cite {
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--bg-light);
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

/* Email SVG Image */
.email-svg {
  height: 1.2rem;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Legal Pages (Terms & Privacy) */
.legal-content {
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 2.5rem 3rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--bg-light);
  text-align: left;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-dark);
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }
}

/* Contact Page - Quick Contact Bar */
.quick-contact-bar {
  display: flex;
  gap: 1rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 180px;
}

.quick-contact-item span {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.quick-contact-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.quick-contact-item a,
.quick-contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
}

.quick-contact-item a:hover {
  color: var(--primary-color);
}

/* Contact Page - 50/50 Split */
.contact-columns {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-col {
  flex: 1;
}

.contact-map-col h2 {
  text-align: left;
}

@media (max-width: 768px) {
  .quick-contact-bar {
    flex-direction: column;
  }
  .contact-columns {
    flex-direction: column;
  }
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  margin-left: 0;
}

.footer-section a {
  color: var(--bg-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Contact Info */
.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 30px;
}

/* Map */
.map-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Sticky Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-cta a {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  
  nav ul.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(255,255,255,0.1);
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  main {
    padding: 1rem;
  }
  
  .services-grid, .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mobile-cta {
    display: block;
  }
  
  /* Add padding to body to account for sticky mobile CTA */
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.highlight {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Print Styles */
@media print {
  header, footer, .mobile-cta, .cta-button {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero {
    background: none;
    color: var(--text-dark);
  }
}
