/* Modern styles for LA Consulting */

:root {
  --primary-color: #0d6fa3;
  --secondary-color: #164569;
  --accent-color: #e8913a;
  --text-color: #333;
  --light-color: #f8f9fa;
  --dark-color: #1d1d1d;
  --font-primary: 'Lato', sans-serif;
  --font-secondary: 'Ubuntu', sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 1;
  color: white;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-out;
}

.hero-tagline {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2s ease-out;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  animation: fadeIn 2.5s ease-out;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Main Section */
.main-section {
  padding: 4rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Value Proposition Cards */
.value-proposition {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-card {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.local-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.flexible-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.personalized-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
}

.value-card h3 {
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* About Snippet */
.about-snippet {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: var(--border-radius);
}

.about-snippet h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-snippet p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Services Page Styles */
.services-hero {
  height: 50vh;
  min-height: 400px;
}

.services-hero-content {
  text-align: center;
}

.services-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.services-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.services-intro h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-intro p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.accounting-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M21 18v1c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></svg>');
}

.bookkeeping-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"/></svg>');
}

.consulting-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z"/></svg>');
}

.formation-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z"/></svg>');
}

.returns-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>');
}

.admin-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>');
}

.payroll-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"/></svg>');
}

.reporting-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></svg>');
}

.xero-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></svg>');
}

.service-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  opacity: 0.7;
  transform: translateX(-5px);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .cta-button:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
  
  .value-card {
    flex-basis: calc(50% - 2rem);
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .value-card {
    flex-basis: 100%;
  }
  
  .services-intro h2 {
    font-size: 2rem;
  }
  
  .services-intro p {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .main-section, .services-section {
    padding: 2rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Detail Pages */
.service-detail-hero {
  height: 40vh;
  min-height: 300px;
}

.service-detail-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-detail-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  position: relative;
}

.large-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.service-detail-card h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-detail-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-item h3::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.feature-item p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.8;
  padding-left: 1.5rem;
}

.service-cta {
  background-color: rgba(13, 111, 163, 0.05);
  padding: 4rem 0;
}

.service-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-quote {
  margin-bottom: 2rem;
}

.service-quote h2 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--primary-color);
  line-height: 1.5;
  font-weight: 400;
  background-color: transparent;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .cta-button:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Footer Fix - Ensure no background color extends beyond intended sections */
.service-cta-content,
.cta-content,
.service-quote,
.service-quote h2 {
  background-color: transparent;
}

.service-quote h2,
.quote-text {
  color: var(--primary-color);
  background-color: transparent;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .service-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-detail-card {
    padding: 2rem;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .service-quote h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .service-detail-hero {
    height: 30vh;
  }
  
  .service-detail-card h2 {
    font-size: 1.8rem;
  }
  
  .service-detail-section {
    padding: 3rem 0;
  }
  
  .service-cta {
    padding: 3rem 0;
  }
  
  .service-quote h2 {
    font-size: 1.3rem;
  }
}

/* About Page Styles */
.about-hero {
  height: 50vh;
  min-height: 400px;
}

.about-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-intro h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  margin-bottom: 3rem;
}

.team-photo {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.team-photo img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.team-info {
  flex: 2;
  min-width: 300px;
}

.team-header {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.team-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.team-header h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-header h3 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: 400;
}

.team-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.qualifications, .bio {
  flex: 1;
  min-width: 250px;
}

.qualifications h4, .bio h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.qualifications ul {
  padding-left: 1.5rem;
}

.qualifications li {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text-color);
}

.bio p {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.values-section {
  padding: 5rem 0;
  background-color: white;
}

.values-section h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.local-service-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.flexibility-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.expertise-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>');
}

.client-focus-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>');
}

.value-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Responsive Fixes for About Page */
@media (max-width: 992px) {
  .team-member {
    padding: 2rem;
  }
  
  .team-header h2 {
    font-size: 2rem;
  }
  
  .team-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .team-header::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-intro h2, .values-section h2 {
    font-size: 2rem;
  }
  
  .about-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 40vh;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-hero {
  height: 50vh;
  min-height: 400px;
}

.contact-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-info p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  background-color: rgba(13, 111, 163, 0.1);
  padding: 10px;
}

.email-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.phone-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.location-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d6fa3"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.contact-details {
  flex-grow: 1;
}

.contact-details h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-details p, 
.contact-details a {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

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

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

.form-group label {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input, 
.form-group textarea {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13, 111, 163, 0.2);
}

.form-error {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: #e74c3c;
  margin-top: 0.5rem;
}

.submit-button {
  align-self: flex-start;
  padding: 12px 30px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Fixes for Contact Page */
@media (max-width: 992px) {
  .contact-content {
    gap: 2rem;
  }
  
  .contact-info h2,
  .contact-form-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .contact-info p {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 40vh;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .submit-button {
    width: 100%;
  }
} 