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

/*Our Roofing Services*/

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.subtitle-white {
	color: white;
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 15px;
	width: 100%;
}

.subtitle-black {
	color: black;
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 15px;
	width: 100%;
}

h3 {
	color: black;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 15px;
	width: 100%;
}

.default-text {
	color: #555;
	font-size: 1.25rem;
	line-height: 1.7;
	opacity: 0.92;
	margin-bottom: 45px;
	width: 100%;
}

.default-text-white {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.7;
	opacity: 0.92;
	margin-bottom: 45px;
	width: 100%;
}

.services-section {
	padding: 100px 200px;
	background-color: #fff;
	text-align: center;
	position: relative;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 25px;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #555;
	max-width: 700px;
	margin: 0 auto 60px auto;
	line-height: 1.6;
}

/* GRID */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	justify-content: center;
	align-items: stretch;
}

/* CARD */
.service-card {
	background: #f9f9f9;
	border-radius: 16px;
	padding: 40px 25px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	cursor: pointer;
}

.service-card:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.service-icon {
	font-size: 40px;
	color: #ffb612;
	margin-bottom: 25px;
	transition: transform 0.4s ease;
	text-align: center;
}

.service-card:hover .service-icon {
	transform: translateY(-8px) scale(1.1);
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #222;
	text-align: center;
}

.service-card p {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.services-section {
		padding: 40px 20px;
	}

	.section-title {
		font-size: 2.2rem;
	}
	.service-card {
		padding: 30px 20px;
	}
}

/* ===== WORDS OF PRAISE ===== */
.reviews-section {
	padding: 100px 200px;
	background: #f9f9f9;
	text-align: center;
	position: relative;
}

.reviews-wrapper {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	min-height: 200px;
}
.review {
	display: none;
	font-size: 1.2rem;
	line-height: 1.7;
	color: #555;
	font-style: italic;
	transition: opacity 0.5s ease;
	min-height: 130px;
}
.review.active {
	display: block;
	animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.review-controls {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.review-controls button {
	background-color: #ffb612;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}
.review-controls button:hover {
	background-color: #222;
	color: #ffb612;
	transform: scale(1.1);
}
/* Responsive */
@media (max-width: 768px) {
	.reviews-section {
		padding: 50px 20px;
	}

	.reviews-section .section-title {
		font-size: 2rem;
	}
	.review p {
		font-size: 1rem;
	}
}

.mission-section {
	padding: 100px 200px;
	background: #fff;
}

.mission-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}

.mission-text {
	flex: 1;
	min-width: 300px;
}

.mission-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #222;
	margin-bottom: 25px;
}

.mission-text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
}

.btn-cta {
	display: inline-block;
	background-color: #ffb612;
	color: #000;
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background-color: #222;
	color: #ffb612;
	transform: scale(1.05);
}

.mission-image {
	flex: 1;
	min-width: 300px;
	text-align: center;
}

.mission-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
	.mission-section {
		padding: 50px 20px;
		background: #fff;
	}

	.mission-content {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
	.mission-text,
	.mission-image {
		min-width: 100%;
	}
	.mission-text h2 {
		font-size: 2rem;
	}
	.mission-text p {
		font-size: 1rem;
	}
}

/* Scroll to top button */
#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #ffb612;
	color: #000;
	border: none;
	padding: 15px 15px;
	border-radius: 50%;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 999;
	transition: all 0.3s ease;
	border: 1px solid #000;
}

#scrollTopBtn:hover {
	background: #222;
	color: #ffb612;
	transform: scale(1.05);
	border: 1px solid #ffb612;
}

.form-section {
	background-color: #f0f0f0;
	height: auto;
	min-height: 500px;
	position: relative;
	width: 100%;
}

.form-container {
	background: #fff;
	padding: 40px;
	width: 90%;
	max-width: 900px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 200px;
	transform: translate(-50%, -50%);
}

.form-container h2 {
	margin-bottom: 25px;
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	text-align: center;
}

.form-group {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.form-group.full-width {
	flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
	flex: 1;
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 1rem;
}

.validation-text {
	color: lightgray;
	font-size: 0.8rem;
	padding: 0px 5px;
}

.submit-container {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.btn-submit {
	display: block;
	width: 150px;
	background-color: #ffb612;
	color: #000;
	font-weight: 600;
	padding: 12px 0;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background-color: #222;
	color: #ffb612;
	transform: scale(1.05);
}

.footer {
	background-color: black;
	height: auto;
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: end;
	padding: 20px 150px;
}

.footer-container {
	width: 100%;
	height: auto;
	min-height: 50px;
	display: flex;
	justify-content: space-between;
	padding-top: 350px;
	gap: 100px;
}

.footer-column {
	flex: 1;
	min-width: 150px;
}

.footer-column img {
	width: 250px;
	height: auto;
	object-fit: cover;
}

.footer-column {
	flex: 1;
	min-width: 220px;
}

.footer-column h3 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.footer-column p,
.footer-column ul {
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.8;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #ffb612;
}

.footer-bottom-bar {
	background-color: black;
	border-top: 1px solid white;
	padding: 15px 150px;
	display: flex;
	justify-content: space-between;
}

.footer-bottom-bar p {
	color: #fff;
}

.footer-bottom-bar ul {
	color: #000;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.footer-bottom-bar ul li a {
	color: white;
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-bottom-bar ul li a:hover {
	color: #ffb612;
}

.sr-only {
	background-color: red;
}
@media (max-width: 992px) {
	.form-section {
		height: auto;
		min-height: auto;
		padding: 20px 10px;
	}

	.form-container {
		position: relative;
		margin-top: 0;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		padding: 20px;
	}

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

	.btn-submit {
		width: 100%;
	}

	.footer {
		background-color: black;
		height: auto;
		padding: 20px 20px;
	}

	.footer-container {
		flex-direction: column;
		padding: 10px 20px;
	}

	.footer-bottom-bar {
		flex-wrap: nowrap;
		padding: 10px 20px;
	}

	.footer-bottom-bar p {
		line-height: 1.6;
	}

	.footer-bottom-bar ul {
		/* flex-direction: column; */
		padding: 0px 0px 0px 50px;
		width: 80%;
		gap: 7px;
	}
}

/*Hero title secction*/
.roofing-hero {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	min-height: 90vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
		url("images/roofing-services/4.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
}

.roofing-hero-container {
	margin-top: 150px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 150px;
}

.roofing-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.roofing-hero-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.roofing-hero-content h1 {
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 800;
}

.roofing-hero-content .subtitle {
	font-size: 1.4rem;
	margin-top: 15px;
	margin-bottom: 25px;
	opacity: 0.9;
}

.hero-btn {
	display: inline-block;
	background-color: #ffb812;
	padding: 15px 28px;
	color: #000;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.3s ease;
}

.hero-btn:hover {
	background-color: #e0a000;
}

.roofing-hero-image {
	position: relative;
	z-index: 2;
	max-width: 45%;
}

.roofing-hero-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.roofing-hero-footer {
	width: 100%;
	color: #000;
	padding: 20px 150px;
	background-color: #ffb612;
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.6;
	z-index: 2;
	opacity: 0.9;
}

@media (max-width: 1050px) {
	.roofing-hero-container {
		margin-top: 200px;
		padding: 80px 30px;
		justify-content: center;
	}

	.roofing-hero-content {
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.roofing-hero-image {
		display: none;
	}
	.roofing-hero-content h1 {
		font-size: 2.5rem;
	}

	.roofing-hero-footer {
		font-size: 1rem;
		padding: 20px 30px;
	}
}

.roofing-pro-section {
	width: 100%;
	padding: 100px 200px;
	background-color: #fff;
	color: black;
}

.roofing-pro-container {
	margin: 0 auto;
	text-align: left;
}

.roofing-pro-title {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 25px;
	line-height: 1.2;
}

.roofing-pro-text {
	color: #555;
	font-size: 1.25rem;
	line-height: 1.7;
	opacity: 0.92;
	margin-bottom: 35px;
}

.roofing-pro-list h3 {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.roofing-pro-list ul {
	list-style: none;
	padding-left: 0;
}

.roofing-pro-list li {
	font-size: 1.25rem;
	color: #555;
	margin: 12px 0;
	display: flex;
	align-items: center;
}

.check-icon {
	color: #ffb812;
	font-size: 1.4rem;
	margin-right: 12px;
}

.roofing-pro-title,
.roofing-pro-text,
.roofing-pro-list {
	transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 900px) {
	.roofing-pro-section {
		padding: 50px 30px;
	}

	.roofing-pro-text {
		font-size: 1.1rem;
	}

	.roofing-pro-title {
		font-size: 2.3rem;
		text-align: center;
	}

	.roofing-pro-text,
	.roofing-pro-list {
		text-align: left;
	}

	.roofing-pro-list li {
		justify-content: left;
		font-size: 1rem;
	}
}

/*Professional Roofing Services*/

.professional-roofing-services {
	width: 100%;
	padding: 100px 200px;
	background-color: #f0f0f0;
}

/* CONTENEDOR GENERAL */
.professional-roofing-services {
	width: 100%;
	padding: 100px 200px;
	background-color: #f0f0f0;
}

/* CONTENIDO */
.professional-roofing-services {
	width: 100%;
	padding: 100px 200px;
	background: #f7f7f7;
	font-family: "Inter", sans-serif;
}

/* HEADER */
.prs-wrapper {
	max-width: 1350px;
	margin: 0 auto;
}

.prs-header {
	text-align: center;
	margin-bottom: 60px;
}

.prs-header h2 {
	font-size: 2.8rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 15px;
}

.prs-header p {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.25rem;
	color: #555;
	line-height: 1.7;
}

/* GRID */
.prs-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* CARD */
.prs-service-card {
	background: #ffffff;
	padding: 35px 30px;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	text-align: left;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	animation: fadeUp 1.1s ease forwards;
	opacity: 0;
}

.prs-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ICON WRAPPER */
.icon-box {
	width: 100%;
	height: 70px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.icon-box img {
	width: 40px;
	opacity: 0.9;
}

.prs-service-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #222;
	text-align: center;
}

.prs-service-card p {
	font-size: 1.2 rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 25px;
}

/* BUTTON */
.learn-more-btn {
	font-size: 16px;
	font-weight: 600;
	background-color: #ffb612;
	color: black;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	transition: 0.2s ease;
}

.learn-more-btn:hover {
	background-color: black;
	color: #ffb612;
}

.icon-bw {
	filter: invert(1) grayscale(1);
}

/* ANIMATION */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* RESPONSIVE */
@media (max-width: 1100px) {
	.prs-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.professional-roofing-services {
		padding: 60px 25px;
	}
	.prs-services-grid {
		grid-template-columns: 1fr;
	}
}

.explore-options-section {
	width: 100%;
	height: auto;
	min-height: 80vh;
	display: flex;
}

.text-options {
	width: 50%;
	height: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
		url("images/roofing-services/4.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	padding: 100px 200px;
}

.text-options p {
	font-size: 1.25rem;
	line-height: 1.7;
	color: #fff;
	margin-bottom: 50px;
	opacity: 0.9;
}

.image-options {
	width: 50%;
	height: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
		url("images/roofing-services/3.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 1050px) {
	.explore-options-section {
		height: auto;
		min-height: auto;
	}

	.image-options {
		display: none;
	}
	.text-options {
		width: 100%;
		padding: 50px;
		justify-content: center;
		align-items: center;
	}

	.text-options p {
		text-align: center;
	}
}

.quality-roofing-materials {
	width: 100%;
	background-color: #f0f0f0;
	padding: 100px 200px;
	overflow: hidden;
}

.quality-roofing-materials .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.quality-roofing-materials .text-content {
	flex: 1 1 500px;
}

.quality-roofing-materials h2 {
	font-size: 2.8rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 15px;
}

.quality-roofing-materials p {
	font-size: 1.25rem;
	color: #555;
	line-height: 1.7;
}

.quality-roofing-materials ul {
	list-style: none;
	margin-top: 30px;
	padding: 0;
}

.quality-roofing-materials ul li {
	font-size: 1.25rem;
	padding: 8px 0;
	position: relative;
	padding-left: 25px;
	color: #555;
	transition: transform 0.3s, color 0.3s;
}

.quality-roofing-materials ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #ffb612; /* azul profesional */
}

.quality-roofing-materials ul li:hover {
	transform: translateX(5px);
	color: #ffb612;
}

.quality-roofing-materials .image-content {
	flex: 1 1 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.quality-roofing-materials .image-content img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.quality-roofing-materials .image-content img:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
	.quality-roofing-materials {
		padding: 50px 30px;
	}
	.container {
		width: 100%;
	}
	.quality-roofing-materials .container {
		flex-direction: column-reverse;
		gap: 30px;
	}
}

.provide-roofing-services {
	width: 100%;
	background-color: #fff;
	padding: 100px 150px;
	overflow: hidden;
}

.provide-roofing-services h2 {
	font-size: 2.8rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 30px;
}

.provide-roofing-services p {
	font-size: 1.25rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
	.provide-roofing-services {
		padding: 60px 30px;
	}
	.provide-roofing-services h2 {
		font-size: 2rem;
	}
	.provide-roofing-services p {
		font-size: 1.1rem;
	}
}

/* CAROUSEL SECTION */
.carousel-section {
	width: 100%;
	padding: 0;
	margin: 0;
}

.carousel-container {
	margin-top: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 550px;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	width: 80%;
	height: 100%;
	opacity: 0;

	transform: scale(1);
	transition: opacity 1s ease, transform 1.2s ease;
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-slide::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	pointer-events: none;
}

.carousel-caption {
	position: absolute;
	bottom: 60px;
	left: 60px;
	color: white;
	max-width: 450px;
	z-index: 3;
}

.carousel-caption h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.carousel-caption p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.carousel-btn {
	position: absolute;
	visibility: hidden;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.17);
	border: none;
	padding: 15px 20px;
	cursor: pointer;
	z-index: 5;
	border-radius: 50%;
	transition: 0.3s;
	color: white;
	font-size: 1.3rem;
}

.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}

.carousel-btn.prev {
	left: 20px;
}
.carousel-btn.next {
	right: 20px;
}

.carousel-dots {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 6;
}

.carousel-dots .dot {
	width: 12px;
	height: 12px;
	background: white;
	opacity: 0.5;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.carousel-dots .dot.active {
	opacity: 1;
	background: #ffb812;
}

@media (max-width: 768px) {
	.carousel-container {
		margin-top: 50px;
		padding: 0px 200px;
	}
	.carousel-slide {
		margin: 50px 0;
		width: 95%;
	}
	.carousel-container {
		height: 350px;
	}

	.carousel-caption {
		left: 20px;
		bottom: 20px;
	}

	.carousel-caption h2 {
		font-size: 1.6rem;
	}

	.quality-roofing-materials p {
		font-size: 1rem;
	}
}

/* Container */
.portfolio-service-section {
	width: 100%;
	padding: 100px 200px;
}

.portfolio-title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 25px;
	color: #000;
}

.portfolio-text {
	font-size: 1.1rem;
	color: #444;
	line-height: 1.7;
}

/* GRID */
.portfolio-features-grid {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}

/* CARD */
.portfolio-feature-card {
	width: 280px;
	height: auto;
	min-height: 320px;
	background: #fff;
	padding: 35px 30px;
	border-radius: 12px;
	border: 1px solid #e7e7e7;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}

.portfolio-feature-card i {
	font-size: 2.5rem;
	color: #ffb612;
	margin-bottom: 15px;
}

.portfolio-feature-card h3 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #000;
}

.portfolio-feature-card p {
	font-size: 1.05rem;
	color: #444;
	opacity: 0.9;
	line-height: 1.6;
}

.portfolio-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1050px) {
	.subtitle-black {
		font-size: 2rem;
		margin-bottom: 10px;
		margin-top: 20px;
	}
	.subtitle-white {
		font-size: 2rem;
		margin-bottom: 10px;
		margin-top: 20px;
	}

	.default-text {
		font-size: 1rem;
		margin-bottom: 30px;
	}
	.portfolio-service-section {
		width: 100%;
		padding: 100px 20px;
	}

	.portfolio-feature-card {
		width: 80%;
		min-height: auto;
	}
}

.portfolio-gallery-title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 40px;
	color: #000;
}

.portfolio-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.portfolio-gallery-grid-commercial {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

@media (max-width: 1054px) {
	.portfolio-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portfolio-gallery-grid-commercial {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* @media (max-width: 768px) {
	.portfolio-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.portfolio-gallery-grid {
		grid-template-columns: 2fr;
	}
} */

.portfolio-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.portfolio-gallery-item:hover img {
	transform: scale(1.08);
}

.portfolio-gallery-item:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.portfolio-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.portfolio-modal-img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 14px;
	box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
	animation: fadeZoom 0.35s ease;
}

@keyframes fadeZoom {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.portfolio-modal-close {
	position: absolute;
	top: 25px;
	right: 35px;
	font-size: 3rem;
	color: #fff;
	cursor: pointer;
	transition: 0.25s ease;
}

.portfolio-modal-close:hover {
	color: #ffb612;
}

.our-company-mission-section {
	background: #f0f0f0;
	padding: 100px 200px;
}

.our-company-mission-container {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.our-company-mission-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.our-company-mission-image {
	flex: 1 1 450px;
	min-width: 300px;
}
.our-company-mission-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.our-company-mission-image img:hover {
	transform: scale(1.05);
}

.our-company-mission-text {
	flex: 1 1 500px;
	min-width: 300px;
}
.our-company-mission-text .default-text {
	margin-bottom: 20px;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.our-company-mission-section {
		padding: 50px 20px;
	}
	.our-company-mission-content {
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}
	.our-company-mission-image {
		flex: 1 1 auto;
		min-width: 100%;
	}
	.our-company-mission-text {
		flex: 1 1 auto;
		min-width: 100%;
	}
}

.why-us-section {
	background: #fff;
	padding: 100px 200px;
}

.why-us-container {
	margin: 0 auto;
}

.why-us-text {
	margin-bottom: 50px;
}
.why-us-text .default-text {
	line-height: 1.8;
	margin-bottom: 15px;
}
.why-us-text ul {
	margin: 15px 0;
	padding-left: 20px;
}
.why-us-text li {
	margin-bottom: 10px;
}

.why-us-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 250px);
	gap: 20px;
}

.why-us-grid-1 {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}
.why-us-grid-2 {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
}
.why-us-grid-3 {
	grid-row: 1 / 3;
	grid-column: 2 / 3;
}
.why-us-grid-4 {
	grid-row: 3 / 4;
	grid-column: 1 / 3;
}

.why-us-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.why-us-grid-item img:hover {
	transform: scale(1.05);
}

@media (max-width: 1050px) {
	.why-us-section {
		padding: 50px 20px;
	}
}

.residential-and-commercial-section {
	width: 100%;
	display: flex;
	min-height: 100px;
}

.residential-and-commercial-text {
	width: 60%;
	background-color: #f0f0f0;
	padding: 100px 200px;
}

.residential-and-commercial-data {
	width: 40%;
	background-color: rgba(0, 0, 0, 0.668);
}

.residential-and-commercial-data {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.years {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #fff;
	font-weight: 800;
	margin-bottom: 20px;
}

.replaced {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #fff;
	font-weight: 800;
}

@media (max-width: 1050px) {
	.residential-and-commercial-section {
		flex-direction: column-reverse;
	}
	.residential-and-commercial-text,
	.residential-and-commercial-data {
		padding: 70px 20px;
		width: 100%;
	}
}

.our-roofing-experts {
	width: 100%;
	padding: 100px 200px;
	background-color: #fff;
}

.experts-container {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.expert-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	text-align: center;
	padding-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.expert-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expert-img {
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.expert-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.expert-card:hover img {
	transform: scale(1.08);
}

.expert-card h3 {
	margin-top: 20px;
	font-size: 1.4rem;
	font-weight: 700;
}

.expert-card p {
	margin-top: 5px;
	font-size: 1rem;
	opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.our-roofing-experts {
		padding: 80px 120px;
	}

	.experts-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.our-roofing-experts {
		padding: 60px 40px;
	}

	.experts-container {
		grid-template-columns: 1fr;
	}

	.expert-img {
		height: 280px;
	}
}

/* GRID */
.commercial-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 40px;
	justify-content: center;
	align-items: stretch;
}

/* CARD */
.commercial-service-card {
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	border-radius: 16px;
	padding: 40px 25px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	cursor: pointer;
}

.commercial-service-card:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.commercial-service-icon {
	font-size: 60px;
	color: #ffb612;
	margin-bottom: 25px;
	transition: transform 0.4s ease;
	text-align: center;
}

.commercial-service-card:hover .commercial-service-icon {
	transform: translateY(-8px) scale(1.1);
}

.commercial-service-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #222;
	text-align: center;
}

.commercial-service-card p {
	font-size: 1.25rem;
	color: #555;
	line-height: 1.6;
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.commercial-services-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
		justify-content: center;
		align-items: stretch;
	}
	.commercial-service-card {
		padding: 30px 20px;
	}

	.commercial-service-card p {
		font-size: 1rem;
	}
}

.free-schedule-section {
	width: 100%;
	height: auto;
	min-height: 35vh;
	display: flex;
}

.text-schedule {
	width: 40%;
	height: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
		url("images/roofing-services/4.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	padding: 100px 20px 100px 200px;
}

.text-schedule p {
	font-size: 1.25rem;
	line-height: 1.7;
	color: #fff;
	margin-bottom: 50px;
	opacity: 0.9;
}

.image-schedule {
	width: 60%;
	height: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
		url("images/roofing-services/comercial-roofing/3.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-commercial-roof-repair-services {
	width: 100%;
	padding: 100px 200px;
	background-color: #f0f0f0;
	height: auto;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.commercial-roof-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	justify-content: space-between;
	align-items: stretch;
}

.roofing-pro-list .extend-variation li {
	font-size: 1rem;
	color: #666;
}

.repair-or-replacement-section {
	display: flex;
}

.fist-section {
	width: 55%;
	background-color: #fff;
	padding: 100px 100px 100px 200px;
}
.second-section {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
		url("images/roofing-services/4.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 45%;
	padding: 100px 200px 100px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1450px) {
	.free-schedule-section {
		height: auto;
		min-height: auto;
	}

	.image-schedule {
		display: none;
	}
	.text-schedule {
		width: 100%;
		padding: 100px 200px;
		justify-content: center;
		align-items: center;
	}

	.text-schedule .subtitle-white {
		text-align: center;
	}

	.text-schedule p {
		text-align: center;
	}

	.repair-or-replacement-section {
		flex-direction: column;
	}

	.fist-section,
	.second-section {
		width: 100%;
		padding: 100px 200px;
	}
}

@media (max-width: 768px) {
	.text-schedule {
		padding: 50px 20px;
		text-align: center;
	}

	.our-commercial-roof-repair-services {
		padding: 50px 20px;
	}

	.fist-section,
	.second-section {
		width: 100%;
		padding: 50px 20px;
	}
}
