* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: #f5f7fa;
	color: #1a1a1a;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #222222;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 2.5rem;
	letter-spacing: -0.3px;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	color: #4b4b4b;
	font-size: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===== LAYOUT CONTAINERS ===== */
.ama-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ama-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ama-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ===== HEADER STYLES ===== */
.ama-header {
	background: #ffffff;
	border-bottom: 3px solid #e63946;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ama-header-top {
	background: #f5f7fa;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.ama-header-top-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.ama-header-contact {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

.ama-header-contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #4b4b4b;
}

.ama-header-contact-item i {
	color: #e63946;
}

.ama-header-hours {
	font-size: 0.875rem;
	color: #4b4b4b;
}

.ama-header-social {
	display: flex;
	gap: 1rem;
}

.ama-header-social a {
	color: #457b9d;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.ama-header-social a:hover {
	color: #e63946;
	transform: translateY(-2px);
}

.ama-header-main {
	padding: 1rem 0;
}

.ama-header-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ama-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #222222;
	letter-spacing: -0.5px;
}

.ama-logo span {
	color: #e63946;
}

.ama-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.ama-nav a {
	color: #1a1a1a;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.ama-nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #e63946;
	transition: width 0.3s ease;
}

.ama-nav a:hover {
	color: #e63946;
}

.ama-nav a:hover::after {
	width: 100%;
}

.ama-nav a.active {
	color: #e63946;
}

.ama-nav a.active::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.ama-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
}

.ama-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #222222;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.ama-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 4px);
}

.ama-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.ama-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.ama-hero {
	padding: 180px 0 100px;
	background: linear-gradient(
		135deg,
		rgba(245, 247, 250, 0.95),
		rgba(255, 255, 255, 0.9)
	);
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.ama-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/ama-hero-main.webp') center/cover;
	z-index: 0;
	background-attachment: fixed;
	opacity: 0.3;
}

.ama-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ama-hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: #222222;
}

.ama-hero-text h1 span {
	color: #e63946;
}

.ama-hero-subtitle {
	font-size: 1.25rem;
	color: #4b4b4b;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.ama-hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.ama-hero-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ama-hero-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	background: linear-gradient(135deg, #457b9d, #a8dadc);
}

/* ===== BUTTONS ===== */
.ama-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	text-align: center;
}

.ama-btn-primary {
	background: #e63946;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.ama-btn-primary:hover {
	background: #d32f3c;
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
	transform: translateY(-2px);
}

.ama-btn-secondary {
	background: #457b9d;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(69, 123, 157, 0.3);
}

.ama-btn-secondary:hover {
	background: #3a6a84;
	box-shadow: 0 6px 20px rgba(69, 123, 157, 0.4);
	transform: translateY(-2px);
}

.ama-btn-outline {
	background: transparent;
	color: #e63946;
	border: 2px solid #e63946;
}

.ama-btn-outline:hover {
	background: #e63946;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.ama-section {
	padding: 80px 0;
}

.ama-section-alt {
	background: #ffffff;
}

.ama-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.ama-section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #222222;
}

.ama-section-subtitle {
	font-size: 1.125rem;
	color: #4b4b4b;
	max-width: 700px;
	margin: 0 auto;
}

/* ===== CARDS ===== */
.ama-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ama-cards-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.ama-cards-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.ama-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.ama-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	border-color: #e63946;
}

.ama-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #e63946, #d32f3c);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #ffffff;
}

.ama-card-icon.blue {
	background: linear-gradient(135deg, #457b9d, #3a6a84);
}

.ama-card-icon.teal {
	background: linear-gradient(135deg, #a8dadc, #88c0c2);
}

.ama-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #222222;
}

.ama-card-text {
	color: #4b4b4b;
	line-height: 1.8;
}

/* ===== FEATURE SECTION (Text + Image) ===== */
.ama-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ama-feature-reverse {
	grid-template-columns: 1fr 1fr;
}

.ama-feature-image {
	border-radius: 15px;
	height: 100%;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ama-feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, #a8dadc, #457b9d);
}

.ama-feature-content h2 {
	margin-bottom: 1.5rem;
}

.ama-feature-list {
	margin-top: 2rem;
}

.ama-feature-list-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ama-feature-list-item i {
	color: #e63946;
	font-size: 1.25rem;
	margin-top: 3px;
}

.ama-feature-list-item h4 {
	margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.ama-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ama-testimonial-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.ama-testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ama-testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border: 4px solid #e63946;
}

.ama-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, #a8dadc, #457b9d);
}

.ama-testimonial-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #222222;
	margin-bottom: 0.5rem;
}

.ama-testimonial-role {
	color: #4b4b4b;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.ama-testimonial-text {
	font-style: italic;
	color: #4b4b4b;
	line-height: 1.8;
}

/* ===== CONTACT FORM SECTION ===== */
.ama-contact-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.ama-form {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ama-form-group {
	margin-bottom: 1.5rem;
}

.ama-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #222222;
}

.ama-form-input,
.ama-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #f5f7fa;
}

.ama-form-input:focus,
.ama-form-textarea:focus {
	outline: none;
	border-color: #e63946;
	background: #ffffff;
}

.ama-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.ama-form-error {
	color: #e63946;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.ama-form-error.active {
	display: block;
}

.ama-form-input.error,
.ama-form-textarea.error {
	border-color: #e63946;
}

.ama-form-submit {
	width: 100%;
	margin-top: 1rem;
}

/* ===== MAP ===== */
.ama-map-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 400px;
}

.ama-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.ama-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ama-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ama-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===== FOOTER ===== */
.ama-footer {
	background: #f0f0f0;
	padding: 60px 0 30px;
}

.ama-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.ama-footer-column h4 {
	margin-bottom: 1.5rem;
	color: #222222;
}

.ama-footer-text {
	color: #4b4b4b;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.ama-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ama-footer-nav a {
	color: #4b4b4b;
	transition: all 0.3s ease;
	display: inline-block;
}

.ama-footer-nav a:hover {
	color: #e63946;
	padding-left: 5px;
}

.ama-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ama-footer-contact-item i {
	color: #e63946;
	margin-top: 3px;
}

.ama-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #d0d0d0;
	color: #4b4b4b;
}

/* ===== COOKIE POPUP ===== */
.ama-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	padding: 1.5rem 0;
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.ama-cookie-popup.active {
	transform: translateY(0);
}

.ama-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.ama-cookie-text {
	flex: 1;
	color: #4b4b4b;
}

.ama-cookie-text a {
	color: #e63946;
	text-decoration: underline;
}

.ama-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.ama-cookie-btn {
	padding: 0.75rem 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ama-fade-in {
	animation: fadeIn 0.8s ease forwards;
}

.ama-slide-up {
	animation: slideUp 0.8s ease forwards;
}

.ama-zoom-in {
	animation: zoomIn 0.8s ease forwards;
}

.ama-animate {
	opacity: 0;
}

.ama-animate.active {
	opacity: 1;
}

/* ===== TABS ===== */
.ama-tabs {
	margin-top: 3rem;
}

.ama-tabs-nav {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid #e0e0e0;
	flex-wrap: wrap;
}

.ama-tab-btn {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: #4b4b4b;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.ama-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 3px;
	background: #e63946;
	transition: width 0.3s ease;
}

.ama-tab-btn:hover {
	color: #e63946;
}

.ama-tab-btn.active {
	color: #e63946;
}

.ama-tab-btn.active::after {
	width: 100%;
}

.ama-tab-content {
	display: none;
}

.ama-tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

/* ===== ACCORDION ===== */
.ama-accordion {
	margin-top: 2rem;
}

.ama-accordion-item {
	background: #ffffff;
	border-radius: 10px;
	margin-bottom: 1rem;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.ama-accordion-header {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.ama-accordion-header:hover {
	background: #f5f7fa;
}

.ama-accordion-title {
	font-weight: 600;
	color: #222222;
	margin: 0;
}

.ama-accordion-icon {
	color: #e63946;
	transition: transform 0.3s ease;
}

.ama-accordion-item.active .ama-accordion-icon {
	transform: rotate(180deg);
}

.ama-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.ama-accordion-item.active .ama-accordion-body {
	max-height: 2000px !important;
	padding: 1rem 1.5rem 1.5rem;
}

.ama-accordion-content {
	color: #4b4b4b;
	line-height: 1.8;
}

/* ===== BREADCRUMBS ===== */
.ama-breadcrumbs {
	padding: 140px 0 40px;
	background: #ffffff;
}

.ama-breadcrumbs-list {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.ama-breadcrumbs-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #4b4b4b;
}

.ama-breadcrumbs-item a {
	color: #457b9d;
	transition: color 0.3s ease;
}

.ama-breadcrumbs-item a:hover {
	color: #e63946;
}

.ama-breadcrumbs-item:last-child {
	color: #222222;
	font-weight: 600;
}

/* ===== PAGE TITLE ===== */
.ama-page-title {
	padding: 60px 0;
	background: #ffffff;
	text-align: center;
}

.ama-page-title h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.ama-page-title p {
	font-size: 1.25rem;
	color: #4b4b4b;
	max-width: 800px;
	margin: 0 auto;
}

/* ===== CONTENT SECTION ===== */
.ama-content-section {
	padding: 80px 0;
}

.ama-content-block {
	margin-bottom: 3rem;
}

.ama-content-block h2 {
	margin-bottom: 1.5rem;
}

.ama-content-block h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #222222;
}

.ama-content-block ul,
.ama-content-block ol {
	list-style: disc;
	padding-left: 2rem;
	margin-bottom: 1.5rem;
}

.ama-content-block li {
	color: #4b4b4b;
	margin-bottom: 0.5rem;
	line-height: 1.8;
}

/* ===== STATS SECTION ===== */
.ama-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.ama-stat-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ama-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #e63946;
	margin-bottom: 0.5rem;
}

.ama-stat-label {
	color: #4b4b4b;
	font-size: 1rem;
}

/* ===== TEAM SECTION ===== */
.ama-team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ama-team-member {
	background: #ffffff;
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.ama-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ama-team-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border: 4px solid #457b9d;
}

.ama-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, #a8dadc, #457b9d);
}

.ama-team-name {
	font-size: 1.5rem;
	color: #222222;
	margin-bottom: 0.5rem;
}

.ama-team-position {
	color: #4b4b4b;
	margin-bottom: 1rem;
}

.ama-team-bio {
	color: #4b4b4b;
	line-height: 1.8;
}

/* ===== CONTACT INFO ===== */
.ama-contact-info {
	background: #ffffff;
	border-radius: 15px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ama-contact-info h3 {
	margin-bottom: 2rem;
}

.ama-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ama-contact-info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #e63946, #d32f3c);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.ama-contact-info-content h4 {
	margin-bottom: 0.5rem;
}

.ama-contact-info-content p {
	color: #4b4b4b;
	margin: 0;
}

/* ===== PROCESS SECTION ===== */
.ama-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.ama-process-step {
	text-align: center;
	position: relative;
}

.ama-process-step::after {
	content: '→';
	position: absolute;
	top: 40px;
	right: -1rem;
	font-size: 2rem;
	color: #a8dadc;
}

.ama-process-step:last-child::after {
	display: none;
}

.ama-process-number {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e63946, #d32f3c);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
}

.ama-process-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.ama-process-text {
	color: #4b4b4b;
}

/* ===== CTA SECTION ===== */
.ama-cta {
	background: linear-gradient(135deg, #e63946, #d32f3c);
	color: #ffffff;
	text-align: center;
	padding: 80px 0;
	border-radius: 20px;
}

.ama-cta h2 {
	color: #ffffff;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.ama-cta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.ama-cta .ama-btn {
	background: #ffffff;
	color: #e63946;
}

.ama-cta .ama-btn:hover {
	background: #f5f7fa;
	transform: translateY(-3px);
}

/* ===== SERVICES GRID ===== */
.ama-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.ama-service-item {
	display: flex;
	gap: 2rem;
}

.ama-service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #457b9d, #3a6a84);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #ffffff;
	flex-shrink: 0;
}

.ama-service-content h3 {
	margin-bottom: 1rem;
}

.ama-service-content p {
	color: #4b4b4b;
	line-height: 1.8;
}

/* ===== UTILITY CLASSES ===== */
.ama-text-center {
	text-align: center;
}

.ama-text-left {
	text-align: left;
}

.ama-text-right {
	text-align: right;
}

.ama-mt-1 {
	margin-top: 0.5rem;
}
.ama-mt-2 {
	margin-top: 1rem;
}
.ama-mt-3 {
	margin-top: 1.5rem;
}
.ama-mt-4 {
	margin-top: 2rem;
}

.ama-mb-1 {
	margin-bottom: 0.5rem;
}
.ama-mb-2 {
	margin-bottom: 1rem;
}
.ama-mb-3 {
	margin-bottom: 1.5rem;
}
.ama-mb-4 {
	margin-bottom: 2rem;
}

.ama-pt-1 {
	padding-top: 0.5rem;
}
.ama-pt-2 {
	padding-top: 1rem;
}
.ama-pt-3 {
	padding-top: 1.5rem;
}
.ama-pt-4 {
	padding-top: 2rem;
}

.ama-pb-1 {
	padding-bottom: 0.5rem;
}
.ama-pb-2 {
	padding-bottom: 1rem;
}
.ama-pb-3 {
	padding-bottom: 1.5rem;
}
.ama-pb-4 {
	padding-bottom: 2rem;
}

/* ===== LOADING SPINNER ===== */
.ama-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid rgba(230, 57, 70, 0.1);
	border-top-color: #e63946;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
	.ama-hero-text h1 {
		font-size: 2.5rem;
	}

	.ama-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ama-feature {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ama-cards-grid,
	.ama-cards-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ama-testimonials,
	.ama-team {
		grid-template-columns: repeat(2, 1fr);
	}

	.ama-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.ama-stats,
	.ama-process {
		grid-template-columns: repeat(2, 1fr);
	}

	.ama-services-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.ama-menu-toggle {
		display: flex;
	}

	.ama-nav {
		position: fixed;
		top: 119px;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		gap: 0;
		padding: 2rem 0;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.ama-nav.active {
		transform: translateX(0);
	}

	.ama-nav a {
		padding: 1rem 2rem;
		width: 100%;
		display: block;
	}
}

@media (max-width: 820px) {
	.ama-header-top {
		display: none;
	}
	.ama-nav {
		top: 68px;
	}
	.ama-header-content {
		padding: 0 20px;
	}

	.ama-logo {
		font-size: 1.3rem;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.ama-header-top-content {
		flex-direction: column;
		gap: 0.5rem;
	}

	.ama-header-contact {
		flex-direction: column;
		gap: 0.5rem;
		width: 100%;
	}

	.ama-hero {
		padding: 140px 0 60px;
	}

	.ama-hero-text h1 {
		font-size: 2rem;
	}

	.ama-hero-subtitle {
		font-size: 1rem;
	}

	.ama-hero-buttons {
		flex-direction: column;
	}

	.ama-section-title {
		font-size: 2rem;
	}

	.ama-cards-grid,
	.ama-cards-grid-2,
	.ama-cards-grid-4,
	.ama-testimonials,
	.ama-team,
	.ama-stats,
	.ama-process {
		grid-template-columns: 1fr;
	}

	.ama-process-step::after {
		display: none;
	}

	.ama-footer-content {
		grid-template-columns: 1fr;
	}

	.ama-contact-section {
		grid-template-columns: 1fr;
	}

	.ama-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ama-cookie-buttons {
		width: 100%;
		flex-direction: column;
	}

	.ama-cookie-btn {
		width: 100%;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.ama-tabs-nav {
		flex-direction: column;
	}

	.ama-tab-btn {
		width: 100%;
		text-align: left;
	}

	.ama-page-title h1 {
		font-size: 2rem;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.ama-container,
	.ama-container-wide,
	.ama-container-narrow {
		padding: 0 1rem;
	}

	.ama-hero-text h1 {
		font-size: 1.75rem;
	}

	.ama-section {
		padding: 60px 0;
	}

	.ama-btn {
		padding: 0.875rem 2rem;
		font-size: 0.875rem;
	}

	.ama-page-title h1,
	.ama-cta h2 {
		font-size: 1.5rem;
	}

	.ama-service-item {
		flex-direction: column;
	}

	.ama-contact-info-item {
		flex-direction: column;
	}

	.ama-accordion-title {
		font-size: 1.1rem;
	}
}

.ama-legal-container {
	min-height: 100vh;
	padding: 140px 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.ama-legal-content {
	max-width: 900px;
	width: 100%;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
	padding: 50px 60px;
	margin: 20px auto;
}

/* === Header Section === */
.ama-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 3px solid #e63946;
}

.ama-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.ama-legal-subtitle {
	font-size: 24px;
	font-weight: 500;
	color: #457b9d;
	margin-bottom: 8px;
}

.ama-legal-date {
	font-size: 14px;
	color: #4b4b4b;
	font-style: italic;
}

/* === Section Styles === */
.ama-legal-section {
	margin-bottom: 40px;
}

.ama-legal-heading {
	font-size: 28px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #a8dadc;
}

.ama-legal-subsection {
	margin: 25px 0;
	padding-left: 20px;
	border-left: 3px solid #a8dadc;
}

.ama-legal-subheading {
	font-size: 20px;
	font-weight: 600;
	color: #457b9d;
	margin-bottom: 12px;
}

/* === Text Styles === */
.ama-legal-text {
	font-size: 16px;
	color: #1a1a1a;
	line-height: 1.8;
	margin-bottom: 16px;
	text-align: justify;
}

.ama-legal-text strong {
	font-weight: 600;
	color: #222222;
}

/* === List Styles === */
.ama-legal-list {
	margin: 16px 0 24px 0;
	padding-left: 30px;
	list-style: disc;
}

.ama-legal-list li {
	font-size: 16px;
	color: #1a1a1a;
	line-height: 1.8;
	margin-bottom: 12px;
	position: relative;
}

.ama-legal-list li::marker {
	color: #e63946;
	font-weight: 600;
}

.ama-legal-list li strong {
	color: #457b9d;
	font-weight: 600;
}

/* === Contact Box === */
.ama-legal-contact {
	background-color: #f5f7fa;
	border-left: 4px solid #e63946;
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 6px;
}

.ama-legal-contact p {
	font-size: 16px;
	color: #1a1a1a;
	line-height: 1.8;
	margin-bottom: 8px;
}

.ama-legal-contact p:last-child {
	margin-bottom: 0;
}

.ama-legal-contact strong {
	color: #e63946;
	font-weight: 600;
	font-size: 18px;
}

/* === Responsive Design === */

/* Tablet Styles */
@media (max-width: 768px) {
	.ama-legal-content {
		padding: 40px 30px;
		margin: 10px;
		border-radius: 8px;
	}

	.ama-legal-title {
		font-size: 2rem;
	}

	.ama-legal-subtitle {
		font-size: 20px;
	}

	.ama-legal-heading {
		font-size: 24px;
	}

	.ama-legal-subheading {
		font-size: 18px;
	}

	.ama-legal-text,
	.ama-legal-list li {
		font-size: 15px;
		text-align: left;
	}

	.ama-legal-subsection {
		padding-left: 15px;
	}

	.ama-legal-list {
		padding-left: 25px;
	}
}

/* Mobile Styles */
@media (max-width: 480px) {
	.ama-legal-content {
		padding: 30px 20px;
		margin: 0;
		border-radius: 6px;
	}

	.ama-legal-header {
		margin-bottom: 35px;
		padding-bottom: 20px;
	}

	.ama-legal-title {
		font-size: 1.3rem;
		line-height: 1.2;
	}

	.ama-legal-subtitle {
		font-size: 18px;
	}

	.ama-legal-date {
		font-size: 13px;
	}

	.ama-legal-heading {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.ama-legal-subheading {
		font-size: 17px;
	}

	.ama-legal-text,
	.ama-legal-list li {
		font-size: 14px;
		line-height: 1.7;
	}

	.ama-legal-section {
		margin-bottom: 30px;
	}

	.ama-legal-subsection {
		padding-left: 12px;
		margin: 20px 0;
	}

	.ama-legal-list {
		padding-left: 20px;
		margin: 12px 0 20px 0;
	}

	.ama-legal-list li {
		margin-bottom: 10px;
	}

	.ama-legal-contact {
		padding: 20px;
		margin: 20px 0;
	}

	.ama-legal-contact p {
		font-size: 14px;
	}

	.ama-legal-contact strong {
		font-size: 16px;
	}
}
