* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #ff6b6b;
	--coral-red: #ff6b6b;
	--secondary-color: #2c3e50;
	--accent-color: #ffc107;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--bg-light: #ecf0f1;
	--bg-white: #ffffff;
	--success-color: #27ae60;
}

body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: var(--bg-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0.8rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	width: 100px;
	height: 95px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	margin: 0 auto;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: var(--coral-red);
}

.nav-links a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--coral-red);
	transition: width 0.3s;
}

.nav-links a:hover:after {
	width: 100%;
}

.quote-btn {
	background: var(--coral-red);
	color: white;
	padding: 12px 28px;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.quote-btn:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: white;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.4) 70%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 4rem;
	align-items: center;
	padding: 40px 0;
}

.hero h1 {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: white;
}

.highlight {
	color: #ffc107;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
}

/* Hero Form */
.hero-form {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
}

.form-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.hero-form h3 {
	color: var(--text-dark);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

.form-pagination {
	background: white;
	color: var(--coral-red);
	border: 2px solid var(--coral-red);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

.hero-form form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-form input,
.hero-form select {
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	transition: border-color 0.3s;
}

.hero-form input:focus,
.hero-form select:focus {
	outline: none;
	border-color: var(--coral-red);
}

.phone-input-wrapper {
	display: flex;
	gap: 10px;
}

.country-code {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: white;
	cursor: pointer;
	transition: border-color 0.3s;
}

.country-code:hover {
	border-color: var(--coral-red);
}

.country-code .flag {
	font-size: 1.3rem;
}

.country-code i {
	color: var(--text-light);
	font-size: 0.8rem;
}

.phone-input-wrapper input {
	flex: 1;
}

.whatsapp-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0.5rem 0;
}

.whatsapp-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--coral-red);
}

.whatsapp-checkbox label {
	color: var(--text-dark);
	font-size: 0.9rem;
	cursor: pointer;
	user-select: none;
}

.next-button {
	background: var(--coral-red);
	color: white;
	padding: 14px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 0.5rem;
}

.next-button:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.form-footer {
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-light);
	margin-top: 1rem;
	line-height: 1.5;
}

.form-footer a {
	color: var(--coral-red);
	text-decoration: none;
	font-weight: 500;
}

.form-footer a:hover {
	text-decoration: underline;
}

.form-footer a:hover {
	text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed !important;
	bottom: 50px;
	right: 30px;
	background: #25d366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: all 0.3s;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Instagram Float Button */
.instagram-float {
	position: fixed !important;
	bottom: 130px;
	left: 30px;
	background: linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
	z-index: 9999;
	transition: all 0.3s;
	text-decoration: none;
}

.instagram-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

/* Facebook Float Button */
.facebook-float {
	position: fixed !important;
	bottom: 50px;
	left: 30px;
	background: #1877f2;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
	z-index: 9999;
	transition: all 0.3s;
	text-decoration: none;
}

.facebook-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(24, 119, 242, 0.6);
}

/* Chat Support */
.chat-support {
	position: fixed !important;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 15px;
}

.chat-message {
	background: white;
	color: var(--text-dark);
	padding: 12px 20px;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
	animation: fadeInRight 0.5s ease;
}

.chat-icon {
	background: var(--coral-red);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
	cursor: pointer;
	transition: all 0.3s;
}

.chat-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(255, 107, 107, 0.6);
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	animation: fadeIn 0.3s ease;
}

.modal.active {
	display: block;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.modal-content {
	position: relative;
	background: white;
	max-width: 500px;
	max-height: 90vh;
	margin: 2% auto;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	overflow-y: auto;
	animation: slideDown 0.4s ease;
	z-index: 10001;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 2rem;
	color: #a0a0a0;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
	line-height: 1;
}

.modal-close:hover {
	background: #f5f5f5;
	color: #ff6b6b;
	transform: rotate(90deg);
}

.modal-header {
	margin-bottom: 1.8rem;
	padding-right: 35px;
}

.modal-header h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	letter-spacing: -0.3px;
}

.modal-header p {
	color: #8b8b8b;
	font-size: 0.9rem;
	line-height: 1.4;
}

.quote-form {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-weight: 500;
	color: #2c3e50;
	font-size: 0.875rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: "Poppins", sans-serif;
	transition: border-color 0.3s;
	width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	outline: none;
	border-color: var(--coral-red);
}

.quote-form textarea {
	resize: vertical;
	min-height: 100px;
}

/* Phone input for modal */
.phone-input-wrapper-modal {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.country-select {
	width: 75px;
	flex-shrink: 0;
	padding: 12px 10px;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	color: #2c3e50;
	cursor: pointer;
	transition: all 0.3s;
	background: white;
}

.country-select:focus {
	outline: none;
	border-color: #ff6b6b;
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.phone-input-wrapper-modal input {
	flex: 1;
}

/* Submit button styling */
.submit-quote-btn {
	background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
	color: white;
	padding: 13px 24px;
	border: none;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 0.3rem;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.submit-quote-btn:hover {
	background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.submit-quote-btn:active {
	transform: translateY(0);
}

.submit-quote {
	margin-top: 0.5rem;
}

/* Ensure floating buttons stay on top */
.whatsapp-float,
.chat-support {
	z-index: 9999;
}

.cta-button {
	background: var(--primary-color);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.cta-button:hover {
	background: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Features Section */
.features-section {
	background: white;
	padding: 60px 0;
	border-bottom: 1px solid #f0f0f0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto;
}

.feature-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.feature-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon svg {
	width: 100%;
	height: 100%;
}

.feature-box h3 {
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.4;
}

/* Home Design Section */
.budget-homes-section {
	background: white;
	padding: 80px 20px;
}

.budget-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	gap: 2rem;
}

.budget-text h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #4a4a4a;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.budget-subtitle {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
}

.quote-btn-inline {
	background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
	color: white;
	padding: 14px 32px;
	border: none;
	border-radius: 30px;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.quote-btn-inline:hover {
	background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.budget-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.budget-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	background: white;
}

.budget-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
}

.card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.price-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(74, 74, 74, 0.9);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}

.card-label {
	padding: 20px;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: #2c3e50;
	background: white;
}

/* Our Work Gallery Section */
.work-gallery {
	padding: 80px 0;
	background: white;
	text-align: center;
}

.work-gallery h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 3rem;
}

.gallery-slider {
	padding: 20px 0;
}

.gallery-card {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 15px;
	padding: 30px 20px;
	margin: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-decoration: none;
	color: inherit;
}

.gallery-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
	background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.gallery-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.gallery-card:hover .gallery-icon {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.gallery-icon i {
	font-size: 2rem;
	color: white;
}

.gallery-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.4;
}

/* Stats Section */
.stats {
	background: var(--success-color);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.stats h2 {
	margin-bottom: 3rem;
	font-size: 2rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.stat-item h3 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.stat-item i {
	font-size: 3rem;
	margin-bottom: 0.5rem;
}

/* Portfolio Section */
.portfolio {
	padding: 80px 0;
	text-align: center;
}

.portfolio h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-item {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.portfolio-item:hover {
	transform: translateY(-10px);
}

.portfolio-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-tag {
	background: var(--primary-color);
	color: white;
	padding: 5px 15px;
	font-size: 0.8rem;
	display: inline-block;
	margin: 1rem 0 0.5rem 0;
}

.portfolio-item h4 {
	font-size: 1.3rem;
	margin: 0.5rem 0;
	padding: 0 1rem;
}

.portfolio-item p {
	color: var(--text-light);
	padding: 0 1rem 1rem 1rem;
}

/* Testimonial Section */
.testimonial {
	background: #f5f5f5;
	padding: 80px 0;
}

.testimonial-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.play-button i {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-left: 4px;
}

.testimonial-text {
	padding: 0 2rem;
}

blockquote {
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 2rem;
	color: #2c3e50;
	font-weight: 400;
	quotes: none;
}

blockquote::before {
	content: '"';
}

blockquote::after {
	content: '"';
}

.testimonial-author {
	font-weight: 400;
	font-size: 1rem;
	color: #2c3e50;
	margin: 0;
}

/* Pricing Section */
.pricing {
	padding: 80px 0;
	background: var(--bg-white);
	text-align: center;
}

.pricing h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card i {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.pricing-card h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.pricing-card p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f5f5f5;
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
	gap: 2rem;
}

.services-header h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #4a4a4a;
	margin: 0;
}

.services-slider-wrapper {
	position: relative;
	margin: 0;
}

.services-slider {
	overflow: visible;
	width: 100%;
}

.services-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	transition: none;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
	width: 50px;
	height: 50px;
	background: #ffe8e8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon i {
	font-size: 1.5rem;
	color: #ff6b6b;
}

.service-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.service-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-card ul li {
	padding: 0.7rem 0;
	color: #666;
	font-size: 0.875rem;
	line-height: 1.6;
	border-bottom: 1px solid #f0f0f0;
}

.service-card ul li:last-child {
	border-bottom: none;
}

.service-card ul li::before {
	content: "• ";
	color: #ff6b6b;
	font-weight: bold;
	margin-right: 8px;
}

.warranty-list li,
.tech-list li {
	padding: 1rem 0 !important;
}

.warranty-list li::before,
.tech-list li::before {
	content: "" !important;
	margin-right: 0 !important;
}

.warranty-list strong,
.tech-list strong {
	color: #2c3e50;
	display: block;
	margin-bottom: 0.3rem;
	font-size: 1rem;
}

/* Slider Navigation Buttons */
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	display: none;
	align-items: center;
	justify-content: center;
}

.slider-btn:hover {
	background: #ff6b6b;
	color: white;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.slider-btn i {
	font-size: 1.2rem;
	color: inherit;
}

.slider-btn:hover i {
	color: white;
}

.slider-prev {
	left: -60px;
}

.slider-next {
	right: -60px;
}

/* Slider Dots */
.slider-dots {
	display: none;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s;
}

.dot:hover {
	background: #ff9999;
}

.dot.active {
	background: #ff6b6b;
	width: 30px;
	border-radius: 6px;
}

/* Partners Section */
.partners {
	padding: 60px 0;
	background: white;
	text-align: center;
}

.partners h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-light);
	font-size: 1rem;
	margin-bottom: 2rem;
}

.partners-slider {
	margin-top: 3rem;
}

.partner-item {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-item img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-item img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--coral-red) !important;
	color: white !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	background: var(--secondary-color) !important;
	transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
	left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
	right: -20px;
}

.owl-carousel .owl-dots {
	margin-top: 30px;
}

.owl-carousel .owl-dot span {
	background: var(--text-light) !important;
	width: 12px;
	height: 12px;
	margin: 5px;
	transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
	background: var(--coral-red) !important;
	width: 30px;
	border-radius: 6px;
}

/* Download Section */
.download-section {
	background: linear-gradient(135deg, #f5a623 0%, #f76b1c 100%);
	padding: 60px 0;
}

.download-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.download-image {
	border-radius: 15px;
	overflow: hidden;
}

.download-image img {
	width: 100%;
	border-radius: 15px;
}

.download-text {
	color: white;
}

.download-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.download-text p {
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

/* Process Section */
.process {
	padding: 60px 0;
	background: white;
	text-align: left;
}

.process h2 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 3rem;
	text-align: left;
}

.process-timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 400px;
	margin: 0 0 3rem 0;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	position: relative;
}

.step-icon-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.step-icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ffeaea;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

.step-icon {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon i {
	font-size: 1.5rem;
	color: #ff6b6b;
}

.step-connector-line {
	width: 2px;
	height: 50px;
	background-image: repeating-linear-gradient(
		to bottom,
		#ddd 0,
		#ddd 6px,
		transparent 6px,
		transparent 12px
	);
	margin: 5px 0;
}

.step-content {
	padding-top: 15px;
}

.process-step h4 {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
	margin: 0;
}

.process-step:last-child .step-connector-line {
	display: none;
}

.process-cta {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	color: white;
	padding: 14px 40px;
	border: none;
	border-radius: 30px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
}

.process-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Reviews Section */
.reviews {
	padding: 80px 0;
	background: white;
	text-align: center;
}

.reviews h2 {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.review-card {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-image {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
}

.review-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-text {
	font-style: italic;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.review-card h5 {
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

.review-location {
	color: var(--text-light);
	font-size: 0.9rem;
}

/* News Section */
.news {
	padding: 80px 0;
	background: var(--bg-light);
	text-align: center;
}

.news h2 {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.news-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.news-card p {
	color: var(--text-dark);
	font-size: 0.875rem;
	line-height: 1.6;
}

/* Final CTA */
.final-cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 0;
	text-align: center;
	color: white;
}

.final-cta h2 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

.final-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.cta-large {
	font-size: 1.05rem;
	padding: 15px 40px;
}

/* Connect Section */
.connect {
	padding: 80px 0;
	background: #f5f5f5;
	text-align: center;
}

.connect h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #4a4a4a;
	margin-bottom: 1rem;
}

.connect-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.connect-buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.connect-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 50px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	letter-spacing: 0.5px;
}

.call-btn {
	background: #4a5f7f;
	color: white;
}

.call-btn:hover {
	background: #3a4f6f;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(74, 95, 127, 0.3);
}

.whatsapp-btn {
	background: #4a5f7f;
	color: white;
}

.whatsapp-btn:hover {
	background: #25d366;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.connect-btn i {
	font-size: 1.3rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.social-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 30px;
	border: 2px solid var(--primary-color);
	border-radius: 5px;
	text-decoration: none;
	color: var(--primary-color);
	font-weight: bold;
	transition: all 0.3s;
}

.social-btn:hover {
	background: var(--primary-color);
	color: white;
}

/* Footer */
.footer {
	background: var(--secondary-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: white;
}

.contact-info {
	margin-top: 1rem;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
}

.social-icons {
	display: flex;
	gap: 1rem;
}

.social-icons a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-icons a:hover {
	background: var(--primary-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.6);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.quote-btn {
		display: block;
		padding: 10px 20px;
		font-size: 0.85rem;
	}

	.mobile-menu-btn {
		display: none;
	}

	.hero-content,
	.testimonial-content,
	.download-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero {
		min-height: auto;
		padding: 80px 0 40px 0;
	}

	.hero h1 {
		font-size: 1.5rem;
		margin-bottom: 0.8rem;
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 1rem;
	}

	.hero-text {
		order: 1;
	}

	.hero-form {
		order: 2;
		margin-top: 0;
		padding: 1.5rem;
		border-radius: 15px;
		display: none;
	}

	.form-header h3 {
		font-size: 1.1rem;
	}

	.form-pagination {
		width: 40px;
		height: 40px;
		font-size: 0.85rem;
	}

	.hero-form input,
	.hero-form select {
		padding: 12px 14px;
		font-size: 0.95rem;
	}

	.next-button {
		padding: 13px;
		font-size: 0.95rem;
	}

	.form-footer {
		font-size: 0.75rem;
	}

	.whatsapp-float {
		bottom: 100px;
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.instagram-float {
		bottom: 100px;
		left: 20px;
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.facebook-float {
		bottom: 30px;
		left: 20px;
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.chat-support {
		bottom: 20px;
		right: 20px;
	}

	.chat-message {
		display: none;
	}

	.chat-icon {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
	}

	.feature-box h3 {
		font-size: 0.75rem;
		line-height: 1.3;
	}

	.work-gallery h2 {
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}

	.gallery-card {
		padding: 20px 15px;
		min-height: 140px;
	}

	.gallery-icon {
		width: 60px;
		height: 60px;
	}

	.gallery-icon i {
		font-size: 1.5rem;
	}

	.gallery-card h3 {
		font-size: 0.85rem;
	}

	.budget-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.budget-text h2 {
		font-size: 1.8rem;
	}

	.budget-subtitle {
		font-size: 0.95rem;
	}

	.quote-btn-inline {
		width: 100%;
		padding: 12px 24px;
	}

	.budget-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.services-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.services-header h2 {
		font-size: 1.8rem;
	}

	.services-header .quote-btn-inline {
		width: 100%;
	}

	.services-track {
		grid-template-columns: 1fr;
	}

	.services-slider-wrapper {
		margin: 0;
	}

	.portfolio-grid,
	.pricing-grid,
	.services-grid,
	.reviews-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid,
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats h2 {
		font-size: 1.3rem;
		margin-bottom: 2rem;
	}

	.stat-item h3 {
		font-size: 1.5rem;
	}

	.stat-item p {
		font-size: 0.85rem;
	}

	.stat-item i {
		font-size: 2rem;
	}

	.process {
		padding: 40px 0;
	}

	.process h2 {
		font-size: 1.4rem;
		margin-bottom: 2.5rem;
	}

	.process-timeline {
		max-width: 100%;
		margin-bottom: 2rem;
	}

	.step-icon-circle {
		width: 50px;
		height: 50px;
	}

	.step-icon i {
		font-size: 1.2rem;
	}

	.step-connector-line {
		height: 40px;
	}

	.step-content {
		padding-top: 10px;
	}

	.process-step h4 {
		font-size: 0.9rem;
	}

	.process-cta {
		width: 100%;
		max-width: 100%;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.modal-content {
		margin: 5% 15px;
		padding: 1.5rem;
		max-height: 85vh;
	}

	.modal-header h2 {
		font-size: 1.5rem;
	}

	.modal-close {
		top: 15px;
		right: 15px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.portfolio-item,
.pricing-card,
.service-column,
.process-step,
.review-card {
	animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}
