/* CSS voor wat-doen-wij/index.php - Diensten pagina */

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
     background: #f9fafb;
}

/* Header Section Styling */
.services-section {
	width: 100vw;
	 background: #f9fafb;
	padding: 8rem 0 5rem;
}

.services-container {
	width: 91.666667%;
	margin: 0 auto;
	padding: 0;
}

.services-header {
	text-align: center;
	margin-bottom: 4rem;
}

.services-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #111827;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.services-title {
		font-size: 3rem;
	}
}

.services-title-accent {
	color: #F15A24;
	position: relative;
}

.services-subtitle {
	font-size: 1.25rem;
	color: #6b7280;
	max-width: 48rem;
	margin: 0 auto;
	line-height: 1.6;
}

/* Container Styling */
.container {
	width: 91.666667%;
	margin: 0 auto;
	padding: 0;
}

/* Section Styling */
.services-overview {
	padding: 6rem 0;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.125rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(241, 90, 36, 0.1);
}

.service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #F15A24, #ff6b35);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon i {
	font-size: 1.5rem;
	color: white;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.service-description {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.feature-tag {
	background: #F15A24;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 500;
}

/* Process Section */
.process-section {
	padding: 6rem 0;
	background: #f8f9fa;
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
	text-align: center;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #F15A24;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.step-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.step-content p {
	color: #6b7280;
	line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
	padding: 6rem 0;
	background: white;
}

.expertise-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.expertise-description {
	font-size: 1.125rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.expertise-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #F15A24;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: #6b7280;
	font-weight: 500;
}

.expertise-features {
	display: grid;
	gap: 1rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 0.5rem;
}

.feature-item i {
	color: #F15A24;
	font-size: 1.25rem;
}

/* Partners Section */
.partners-section {
	padding: 6rem 0;
	background: #f8f9fa;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.partner-category {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.partner-title {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.partner-title i {
	color: #F15A24;
	font-size: 1.5rem;
}

.partner-description {
	color: #6b7280;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.partner-list {
	list-style: none;
	padding: 0;
}

.partner-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #e5e7eb;
	color: #374151;
}

.partner-list li:last-child {
	border-bottom: none;
}

.partner-list strong {
	color: #F15A24;
}

/* Contact CTA */
.contact-cta {
	padding: 6rem 0;
	background: linear-gradient(135deg, #F15A24, #ff6b35);
	color: white;
	text-align: center;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-description {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary {
	background: white;
	color: #F15A24;
}

.btn-primary:hover {
	background: #f1f5f9;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: #F15A24;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.expertise-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.expertise-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Basis styling */
.services-header {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
     background: #f9fafb;
}

.services-header-container {
    position: relative;
    width: 91.666667%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.services-header-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .services-header-title {
        font-size: 3.75rem;
    }
}

.services-header-accent {
    color: #F15A24;
    position: relative;
}

.services-header-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #F15A24, #fb923c);
    border-radius: 9999px;
}

.services-header-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.services-search-container {
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
}

.services-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.services-search-icon {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    z-index: 10;
}

.services-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(241, 90, 36, 0.5);
    border-color: rgba(241, 90, 36, 0.5);
}

.services-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    margin-top: 0.5rem;
    z-index: 20;
    max-height: 15rem;
    overflow-y: auto;
}

.services-search-results.hidden {
    display: none;
}

/* Main services section */
.services-main {
    padding: 1.25rem 0;
    background-color: white;
}

.services-main-container {
    width: 91.666667%;
    margin: 0 auto;
    padding: 0;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .services-layout {
        flex-direction: row;
    }
}

/* Filter Sidebar */
.filter-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .filter-sidebar {
        width: 25%;
    }
}

.filter-container {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    position: sticky;
    top: 1.5rem;
}

.filter-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(241, 90, 36, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.filter-icon i {
    color: #F15A24;
    font-size: 1.125rem;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.filter-option:hover {
    background-color: rgba(241, 90, 36, 0.05);
}

.filter-checkbox-container {
    position: relative;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.filter-checkbox:checked + .filter-checkbox-custom {
    background: linear-gradient(135deg, #F15A24 0%, #e14d1f 100%);
    border-color: #F15A24;
}

.filter-checkbox-custom i {
    color: white;
    font-size: 0.75rem;
    opacity: 0;
}

.filter-checkbox:checked + .filter-checkbox-custom i {
    opacity: 1;
}

.filter-label {
    margin-left: 0.75rem;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
}

.filter-option:hover .filter-label {
    color: #F15A24;
}

.filter-actions {
    margin-top: 1.5rem;
}

.filter-reset {
    width: 100%;
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.filter-reset:hover {
    background-color: #e5e7eb;
}

.filter-reset i {
    margin-right: 0.5rem;
}

.results-summary {
    background-color: rgba(241, 90, 36, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.results-counter {
    color: #F15A24;
    font-weight: bold;
    font-size: 1.125rem;
}

.results-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Companies section */
.companies-section {
    width: 100%;
}

@media (min-width: 1024px) {
    .companies-section {
        width: 75%;
    }
}

.companies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.companies-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.companies-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.companies-count {
    background-color: rgba(241, 90, 36, 0.1);
    color: #F15A24;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.view-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.view-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.view-buttons {
    display: flex;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 0.25rem;
}

.view-button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.view-button.active {
    background-color: white;
    color: #F15A24;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.view-button:not(.active) {
    color: #6b7280;
}

.view-button:not(.active):hover {
    color: #F15A24;
}

.view-button i {
    margin-right: 0.5rem;
}

.companies-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .companies-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.load-more-section {
    text-align: center;
}

.load-more-button {
    background: linear-gradient(to right, #F15A24, #fb7c47);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.load-more-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.load-more-button i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.load-more-button:hover i {
    transform: rotate(90deg);
}

/* Company card animations */
.company-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: slideInCompany 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.company-card:nth-child(1) { animation-delay: 0.1s; }
.company-card:nth-child(2) { animation-delay: 0.2s; }
.company-card:nth-child(3) { animation-delay: 0.3s; }
.company-card:nth-child(4) { animation-delay: 0.4s; }
.company-card:nth-child(5) { animation-delay: 0.5s; }
.company-card:nth-child(6) { animation-delay: 0.6s; }
.company-card:nth-child(7) { animation-delay: 0.7s; }
.company-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideInCompany {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Company Cards Styling */
.company-card {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.company-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.company-card .p-6 {
    padding: 1.5rem;
}

.company-card .pb-4 {
    padding-bottom: 1rem;
}

.company-card .flex {
    display: flex;
}

.company-card .items-start {
    align-items: flex-start;
}

.company-card .items-center {
    align-items: center;
}

.company-card .justify-between {
    justify-content: space-between;
}

.company-card .mb-4 {
    margin-bottom: 1rem;
}

.company-card .mb-1 {
    margin-bottom: 0.25rem;
}

.company-card .mb-2 {
    margin-bottom: 0.5rem;
}

.company-card .gap-4 {
    gap: 1rem;
}

.company-card .gap-2 {
    gap: 0.5rem;
}

.company-card .gap-1 {
    gap: 0.25rem;
}

.company-card .w-14 {
    width: 3.5rem;
}

.company-card .h-14 {
    height: 3.5rem;
}

.company-card .w-8 {
    width: 2rem;
}

.company-card .h-8 {
    height: 2rem;
}

.company-card .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.company-card .from-\[#F15A24\]\/10 {
    --tw-gradient-from: rgba(241, 90, 36, 0.1);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(241, 90, 36, 0));
}

.company-card .to-\[#F15A24\]\/20 {
    --tw-gradient-to: rgba(241, 90, 36, 0.2);
}

.company-card .rounded-2xl {
    border-radius: 1rem;
}

.company-card .rounded-xl {
    border-radius: 0.75rem;
}

.company-card .rounded-full {
    border-radius: 9999px;
}

.company-card .rounded-lg {
    border-radius: 0.5rem;
}

.company-card .object-contain {
    object-fit: contain;
}

.company-card .font-bold {
    font-weight: 700;
}

.company-card .font-medium {
    font-weight: 500;
}

.company-card .font-semibold {
    font-weight: 600;
}

.company-card .text-gray-900 {
    color: #111827;
}

.company-card .text-gray-600 {
    color: #4b5563;
}

.company-card .text-gray-500 {
    color: #6b7280;
}

.company-card .text-gray-400 {
    color: #9ca3af;
}

.company-card .text-gray-800 {
    color: #1f2937;
}

.company-card .text-\[#F15A24\] {
    color: #F15A24;
}

.company-card .text-yellow-400 {
    color: #fbbf24;
}

.company-card .text-gray-300 {
    color: #d1d5db;
}

.company-card .text-lg {
    font-size: 1.125rem;
}

.company-card .text-sm {
    font-size: 0.875rem;
}

.company-card .text-xs {
    font-size: 0.75rem;
}

.company-card .leading-tight {
    line-height: 1.25;
}

.company-card .leading-relaxed {
    line-height: 1.625;
}

.company-card .flex-wrap {
    flex-wrap: wrap;
}

.company-card .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.company-card .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.company-card .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.company-card .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.company-card .p-2 {
    padding: 0.5rem;
}

.company-card .bg-\[#F15A24\]\/10 {
    background-color: rgba(241, 90, 36, 0.1);
}

.company-card .bg-gray-100 {
    background-color: #f3f4f6;
}

.company-card .bg-gray-50 {
    background-color: #f9fafb;
}

.company-card .bg-white {
    background-color: white;
}

.company-card .border-t {
    border-top-width: 1px;
}

.company-card .border-gray-100 {
    border-color: #f3f4f6;
}

.company-card .uppercase {
    text-transform: uppercase;
}

.company-card .tracking-wider {
    letter-spacing: 0.05em;
}

.company-card .text-right {
    text-align: right;
}

.company-card .mr-2 {
    margin-right: 0.5rem;
}

.company-card .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.company-card .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.company-card .hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.company-card .transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Companies Grid */
#companiesContainer.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    #companiesContainer.grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* View Toggle Buttons */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Restoration Specialties Section */
.restoration-specialties {
	/* padding: 6rem 0; */
	 background: #f9fafb;
}

.specialties-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.specialty-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.specialty-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(241, 90, 36, 0.1);
}

.specialty-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #F15A24, #ff6b35);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.specialty-icon i {
	font-size: 1.5rem;
	color: white;
}

.specialty-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.specialty-description {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.specialty-features {
	list-style: none;
	padding: 0;
}

.specialty-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: #374151;
}

.specialty-features li i {
	color: #10b981;
	font-size: 0.875rem;
}

/* Restoration Process Section */
.restoration-process-section {
	padding: 6rem 0;
	background: #f8f9fa;
}

.restoration-process-section .process-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.restoration-process-section .process-step {
	text-align: center;
}

.restoration-process-section .step-number {
	width: 60px;
	height: 60px;
	background: #F15A24;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.restoration-process-section .step-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.restoration-process-section .step-content p {
	color: #6b7280;
	line-height: 1.6;
}

/* Responsive Design for new sections */
@media (max-width: 768px) {
	.specialties-grid {
		grid-template-columns: 1fr;
	}
	
	.restoration-process-section .process-timeline {
		grid-template-columns: 1fr;
	}
}

