@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
	--primary-color: #0f172a;
	--accent-color: #2563eb;
	--text-color: #1e293b;
	--muted-color: #64748b;
	--border-color: #e2e8f0;
	--light-bg: #f8fafc;
	--white: #ffffff;

	--container-width: 1200px;
	--border-radius: 12px;

	--transition: 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	color: var(--text-color);
	background: var(--white);
	line-height: 1.7;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button,
input,
textarea,
select {
	font-family: inherit;
}

.container {
	width: 90%;
	max-width: var(--container-width);
	margin: auto;
}

section {
	padding: 90px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--primary-color);
	line-height: 1.2;
	font-weight: 700;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.3rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	color: var(--muted-color);
	margin-top: 15px;
}

.section-title {
	text-align: center;
	margin-bottom: 15px;
}

.section-subtitle {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
}

.btn-primary {
	background: var(--accent-color);
	color: var(--white);
}

.btn-primary:hover {
	opacity: 0.9;
}

.btn-secondary {
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	background: transparent;
}

.btn-secondary:hover {
	background: var(--accent-color);
	color: var(--white);
}

.card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 30px;
}

.page-banner {
	background: var(--light-bg);
	text-align: center;
	padding: 100px 0;
}

.page-banner h1 {
	margin-bottom: 15px;
}

.form-group {
	margin-bottom: 20px;
}

input,
textarea,
select {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	outline: none;
}

textarea {
	resize: none;
}

footer {
	background: var(--primary-color);
	color: var(--white);
}

.header {
	position: sticky;
	top: 0;
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: var(--primary-color);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-menu a {
	font-weight: 500;
	transition: var(--transition);
}

.nav-menu a:hover {
	color: var(--accent-color);
}

.menu-toggle {
	display: none;
	font-size: 2rem;
	cursor: pointer;
}

.mobile-btn {
	display: none;
}

.hero {
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.hero-container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 80px;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	background: rgba(37, 99, 235, 0.1);
	color: var(--accent-color);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 25px;
}

.hero-content h1 {
	margin-bottom: 24px;
}

.hero-content p {
	max-width: 650px;
	font-size: 1.05rem;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	margin-top: 35px;
}

.hero-services {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 35px;
}

.hero-services span {
	padding: 10px 16px;
	border: 1px solid var(--border-color);
	border-radius: 999px;
	background: var(--white);
	font-size: 0.95rem;
	font-weight: 500;
}

.hero-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.hero-card h3 {
	margin-bottom: 25px;
}

.card-item {
	padding: 16px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 15px;
	font-weight: 500;
}

.trust-points {
	margin-top: 25px;
}

.trust-points p {
	margin-bottom: 10px;
	color: var(--text-color);
}

.why-us {
	background: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.why-card {
	padding: 35px 25px;
	border: 1px solid var(--border-color);
	border-radius: 16px;
	transition: var(--transition);
}

.why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.why-icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.1);
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.why-card h3 {
	margin-bottom: 10px;
}

.services-preview {
	background: var(--light-bg);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 30px;
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.service-card h3 {
	margin-bottom: 12px;
}

.services-btn {
	text-align: center;
	margin-top: 50px;
}

.process {
	background: var(--white);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.process-card {
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: var(--transition);
}

.process-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.process-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-weight: 700;
	font-size: 1.1rem;
}

.process-card h3 {
	margin-bottom: 12px;
}

.cta-section {
	background: var(--white);
}

.cta-box {
	background: var(--primary-color);
	color: var(--white);
	text-align: center;
	padding: 70px 40px;
	border-radius: 24px;
}

.cta-box h2 {
	color: var(--white);
	margin-bottom: 20px;
}

.cta-box p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto 30px;
}

.footer {
	background: var(--primary-color);
	padding: 80px 0 25px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
}

.footer-logo {
	color: var(--white);
	margin-bottom: 15px;
}

.footer h4 {
	color: var(--white);
	margin-bottom: 20px;
}

.footer ul li {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer a:hover {
	color: var(--white);
}

.footer p {
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact-title {
	margin-top: 30px;
}

.footer-bottom {
	margin-top: 60px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.about-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: start;
}

.about-card {
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 30px;
}

.about-card ul li {
	margin-bottom: 15px;
}

.mission-section {
	background: var(--light-bg);
}

.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.mission-card {
	background: var(--white);
	border-radius: 16px;
	padding: 35px;
	border: 1px solid var(--border-color);
}

.service-intro {
	text-align: center;
}

.intro-content {
	max-width: 850px;
	margin: auto;
}

.category-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
}

.category-header span {
	font-size: 4rem;
	font-weight: 700;
	color: #dbeafe;
	line-height: 1;
}

.category-header h2 {
	margin: 0;
}

.service-category {
	padding: 100px 0;
}

.alternate {
	background: var(--light-bg);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-item {
	padding: 35px;
	border-bottom: 2px solid var(--border-color);
	transition: 0.3s ease;
}

.service-item:hover {
	border-color: var(--accent-color);
	transform: translateY(-5px);
}

.service-item h3 {
	margin-bottom: 12px;
}

.help-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.help-card {
	border: 1px solid var(--border-color);
	padding: 40px;
	border-radius: 16px;
	text-align: center;
	transition: 0.3s ease;
}

.help-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.contact-section {
	background: var(--light-bg);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: stretch;
}

.contact-info {
	background: var(--primary-color);
	padding: 50px;
	border-radius: 24px;
}

.contact-label {
	display: inline-block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.contact-info h2 {
	color: var(--white);
	margin-bottom: 20px;
}

.contact-info > p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

.contact-detail {
	margin-bottom: 30px;
}

.contact-detail h3 {
	color: var(--white);
	font-size: 1rem;
	margin-bottom: 8px;
}

.contact-detail p {
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0;
}

.contact-form-card {
	background: var(--white);
	padding: 50px;
	border-radius: 24px;
	border: 1px solid var(--border-color);
}

.contact-form-card h2 {
	margin-bottom: 10px;
}

.contact-form-card > p {
	margin-bottom: 30px;
}

.consent-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 25px;
}

.consent-box input {
	width: auto;
	margin-top: 5px;
}

.consent-box label {
	font-size: 0.95rem;
	color: var(--muted-color);
}

.contact-banner {
	padding: 50px 0 20px;
}

.contact-link {
	color: rgba(255, 255, 255, 0.85);
	transition: var(--transition);
	display: inline-block;
}

.contact-link:hover {
	color: #ffffff;
	transform: translateX(4px);
}

.policy-banner {
	padding: 70px 0 50px;
}

.policy-section {
	background: var(--white);
}

.policy-date {
	margin-bottom: 40px;
	font-weight: 600;
}

.policy-block ul {
	margin-top: 15px;
	padding-left: 20px;
}

.policy-block ul li {
	margin-bottom: 10px;
	list-style: disc;
	color: var(--muted-color);
}

.policy-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: start;
}

.policy-main {
	background: var(--white);
}

.policy-sidebar {
	position: sticky;
	top: 120px;
}

.privacy-card {
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 35px;
}

.privacy-card h3 {
	margin-bottom: 15px;
}

.privacy-card p {
	margin-bottom: 25px;
}

.privacy-card ul {
	padding-left: 0;
}

.privacy-card li {
	list-style: none;
	margin-bottom: 15px;
	color: var(--text-color);
	font-weight: 500;
}

.policy-block {
	margin-bottom: 40px;
}

.policy-block h3 {
	margin-bottom: 12px;
	font-size: 1.3rem;
}

.about-banner {
	padding: 70px 0 50px;
}

.about-section {
	padding-top: 60px;
}

.about-layout {
	max-width: 900px;
	margin: auto;
	text-align: center;
}

.about-label {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.about-content h2 {
	margin-bottom: 25px;
}

.professional-section {
	background: var(--light-bg);
}

.professional-card {
	max-width: 900px;
	margin: auto;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 50px;
}

.professional-card h2 {
	margin-bottom: 25px;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 50px;
}

.approach-card {
	border: 1px solid var(--border-color);
	border-radius: 18px;
	padding: 35px;
	transition: var(--transition);
}

.approach-card:hover {
	transform: translateY(-5px);
}

.approach-card h3 {
	margin-bottom: 15px;
}

.values-section {
	background: var(--light-bg);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 50px;
}

.value-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 18px;
	padding: 40px 20px;
	text-align: center;
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
}

/* ==========================
   WhatsApp Floating Button
========================== */

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;

	width: 62px;
	height: 62px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #25d366;
	color: #ffffff;

	border-radius: 50%;

	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);

	z-index: 9999;

	transition: all 0.3s ease;
	animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.whatsapp-float:hover {
	transform: translateY(-6px) scale(1.08);
	box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}

	70% {
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}
