/* Inner Pages Styling */
:root {
  --primary-color: #f7941e;
  --secondary-color: #1a365d;
}

.inner-header {
  background-color: var(--secondary-color);
  padding: 180px 0 100px;
  color: #fff;
  text-align: left;
}

.inner-header .county-tag {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.inner-header .county-tag i {
  margin-right: 8px;
}

.inner-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.inner-header p {
  font-size: 1.2rem;
  max-width: 700px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.inner-header .btn-quote-inner {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.inner-header .btn-quote-inner:hover {
  background-color: #d17a1a;
  transform: translateY(-2px);
}

/* Services Grid Section */
.inner-services-section {
  padding: 100px 0;
  background-color: #fff;
  color: #2d3748;
}

.inner-services-header {
  margin-bottom: 60px;
}

.inner-services-header h2 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 15px;
}

.inner-services-header p {
  font-size: 1.1rem;
  color: #718096;
}

.service-grid-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-grid-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-grid-card.specialty {
  border: 1px solid var(--primary-color);
  background-color: #fffaf0;
}

.service-grid-card i {
  font-size: 1.5rem;
  color: #1a365d;
  margin-right: 20px;
}

.service-grid-card.specialty i {
  color: var(--primary-color);
}

.service-grid-card h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-grid-card span {
  display: block;
  font-size: 0.85rem;
  color: #718096;
  font-weight: 500;
}

.service-grid-card span.specialty-tag {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
  display: inline-block;
}

.service-grid-card span.specialty-tag i {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-right: 5px;
}

/* Ready to Start Section */
.cta-inner-section {
  background-color: var(--secondary-color);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.cta-inner-section h2 {
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-inner-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-inner-section .btn-cta-inner {
  background-color: var(--primary-color);
  color: #fff;
  padding: 18px 45px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-inner-section .btn-cta-inner:hover {
  background-color: #d17a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
