/* Services Page Styles */
/* Dedicated CSS for services.html */

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(248, 226, 124, 0.1);
	border: 1px solid var(--yellow);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	color: var(--yellow);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.hero-badge i {
	font-size: 1rem;
}

/* Services Hero Section */
.services-hero {
	background: #000000;
	position: relative;
	overflow: hidden;
}

.services-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
}

.hero-description {
	font-size: 1.2rem;
	color: var(--light-grey);
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Section Badge */
.section-badge {
	display: inline-block;
	background: rgba(255, 105, 180, 0.1);
	border: 1px solid var(--pink);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	color: var(--pink);
	margin-bottom: 1rem;
	font-weight: 500;
}

/* Services Overview Section */
.services-overview {
	background: var(--primary-black);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card.featured {
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	transform: none;
}

.service-card.featured::before {
	content: "POPULAR";
	position: absolute;
	top: 15px;
	right: -30px;
	background: var(--yellow);
	color: var(--primary-black);
	padding: 5px 40px;
	font-size: 0.8rem;
	font-weight: bold;
	transform: rotate(45deg);
}

.service-card:hover {
	transform: translateY(-3px);
	border-color: rgba(248, 226, 124, 0.4);
	background: rgba(248, 226, 124, 0.08);
	box-shadow: 0 8px 25px rgba(248, 226, 124, 0.1);
}

.service-card.featured:hover {
	transform: translateY(-3px);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon i {
	font-size: 2rem;
	color: var(--primary-black);
}

.service-content h3 {
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.service-content p {
	color: var(--light-grey);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.service-features li {
	color: var(--light-grey);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-features i {
	color: var(--yellow);
	font-size: 0.8rem;
}

.service-price {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--yellow);
	margin: 1.5rem 0;
}

.btn-small {
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
}

/* Process Section */
.process-section {
	background: var(--secondary-black);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.process-step:hover {
	background: rgba(248, 226, 124, 0.05);
	border-color: var(--yellow);
	transform: translateY(-5px);
}

.step-number {
	background: linear-gradient(135deg, var(--yellow), var(--pink));
	color: var(--primary-black);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1.5rem;
}

.step-content h3 {
	color: var(--white);
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.step-content p {
	color: var(--light-grey);
	line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
	background: var(--primary-black);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(248, 226, 124, 0.05);
	border-color: var(--yellow);
	transform: translateY(-2px);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 1.2rem;
	color: var(--primary-black);
}

.feature-content h4 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.feature-content p {
	color: var(--light-grey);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Portfolio Section */
.portfolio-section {
	background: var(--secondary-black);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-5px);
	border-color: var(--pink);
	box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
}

.portfolio-image {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.portfolio-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--dark-grey), var(--secondary-black));
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-placeholder i {
	font-size: 3rem;
	color: var(--yellow);
}

.portfolio-content {
	padding: 1.5rem;
}

.portfolio-content h4 {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.portfolio-content p {
	color: var(--light-grey);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.portfolio-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	background: rgba(248, 226, 124, 0.1);
	border: 1px solid var(--yellow);
	color: var(--yellow);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
	background: var(--primary-black);
	padding: 4rem 0;
}

.cta-content {
	max-width: 600px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--white);
}

.cta-buttons {
	margin-top: 2rem;
}

/* Mobile Responsiveness for Services Page */
@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card.featured {
		transform: none;
	}

	.service-card.featured:hover {
		transform: translateY(-3px);
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.feature-icon {
		margin: 0 auto;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.cta-content h2 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.service-card {
		padding: 1.5rem;
	}

	.service-icon {
		width: 60px;
		height: 60px;
	}

	.service-icon i {
		font-size: 1.5rem;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.feature-icon {
		width: 40px;
		height: 40px;
		margin: 0 auto;
	}

	.feature-icon i {
		font-size: 1rem;
	}

	.hero-badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	.section-badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	.portfolio-image {
		height: 150px;
	}

	.portfolio-placeholder i {
		font-size: 2rem;
	}
}

/* Service Buttons */
.service-buttons {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	flex-wrap: nowrap;
}

.service-buttons .btn {
	flex: 1;
	min-width: 120px;
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease-out;
}

.modal-content {
	background-color: var(--secondary-black);
	margin: 5% auto;
	padding: 2rem;
	border: 1px solid var(--dark-grey);
	border-radius: 12px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	animation: slideIn 0.3s ease-out;
}

.close-modal {
	color: var(--light-grey);
	float: right;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
	color: var(--white);
}

/* Service Details Modal Content */
.service-detail {
	padding: 2rem 0 1rem;
}

.service-detail h3 {
	color: var(--yellow);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.service-detail h3 i {
	font-size: 1.5rem;
}

.service-detail-content {
	margin-bottom: 2rem;
}

.service-detail-section {
	margin-bottom: 1.5rem;
}

.service-detail-section h4 {
	color: var(--pink);
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.service-detail-list {
	list-style: none;
	padding: 0;
}

.service-detail-list li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
	color: var(--light-grey);
}

.service-detail-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--yellow);
	font-weight: bold;
}

.service-deliverables {
	background: var(--dark-grey);
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.service-timeline {
	background: rgba(255, 105, 180, 0.1);
	border: 1px solid var(--pink);
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--white);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--dark-grey);
	border-radius: 6px;
	background-color: var(--primary-black);
	color: var(--white);
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--yellow);
	box-shadow: 0 0 0 2px rgba(248, 226, 124, 0.2);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--light-grey);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		margin: 10% auto;
		padding: 1.5rem;
	}

	.service-buttons {
		flex-direction: column;
	}

	.service-buttons .btn {
		width: 100%;
	}
}
