@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ============================================
   CSS VARIABLES & DESIGN SYSTEM
   ============================================ */
:root {
	/* Colors */
	--at-bg-primary: #fafafa;
	--at-bg-white: #ffffff;
	--at-accent-blue: #0099cc;
	--at-accent-sand: #ffd166;
	--at-divider: #e0e0e0;
	--at-text-primary: #333333;
	--at-text-secondary: #666666;
	--at-text-heading: #111111;
	--at-footer-bg: #f1f3f5;

	/* Fonts */
	--at-font-primary: 'Source Sans Pro', sans-serif;
	--at-font-heading: 'Poppins', sans-serif;

	/* Transitions */
	--at-transition: 0.4s ease-in-out;

	/* Shadows */
	--at-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--at-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--at-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--at-shadow-glow: 0 0 20px rgba(0, 153, 204, 0.3);

	/* Spacing */
	--at-spacing-xs: 0.5rem;
	--at-spacing-sm: 1rem;
	--at-spacing-md: 2rem;
	--at-spacing-lg: 4rem;
	--at-spacing-xl: 6rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--at-font-primary);
	background-color: var(--at-bg-primary);
	color: var(--at-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--at-transition);
}

ul {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--at-font-heading);
	font-weight: 600;
	color: var(--at-text-heading);
	line-height: 1.3;
	margin-bottom: var(--at-spacing-sm);
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: var(--at-spacing-sm);
	color: var(--at-text-secondary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.at-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--at-spacing-md);
}

.at-section {
	padding: var(--at-spacing-xl) 0;
}

.at-text-center {
	text-align: center;
}

.at-text-blue {
	color: var(--at-accent-blue);
}

.at-text-sand {
	color: var(--at-accent-sand);
}

.at-bg-white {
	background-color: var(--at-bg-white);
}

.at-divider {
	width: 60px;
	height: 4px;
	background: var(--at-accent-blue);
	margin: var(--at-spacing-sm) auto;
	border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.at-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--at-font-heading);
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
	transition: var(--at-transition);
	text-align: center;
	border: 2px solid transparent;
}

.at-btn-primary {
	background: var(--at-accent-blue);
	color: var(--at-bg-white);
}

.at-btn-primary:hover {
	background: #007aa3;
	box-shadow: var(--at-shadow-glow);
	transform: translateY(-2px);
}

.at-btn-secondary {
	background: var(--at-accent-sand);
	color: var(--at-text-heading);
}

.at-btn-secondary:hover {
	background: #ffc233;
	box-shadow: 0 0 20px rgba(255, 209, 102, 0.4);
	transform: translateY(-2px);
}

.at-btn-outline {
	background: transparent;
	color: var(--at-accent-blue);
	border-color: var(--at-accent-blue);
}

.at-btn-outline:hover {
	background: var(--at-accent-blue);
	color: var(--at-bg-white);
}

/* ============================================
   HEADER
   ============================================ */
.at-header {
	background: var(--at-bg-white);
	box-shadow: var(--at-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--at-transition);
}

.at-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem var(--at-spacing-md);
	max-width: 1200px;
	margin: 0 auto;
}

.at-logo {
	font-family: var(--at-font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--at-accent-blue);
	letter-spacing: -0.5px;
}

.at-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.at-nav-link {
	font-weight: 500;
	color: var(--at-text-primary);
	position: relative;
	padding: 0.5rem 0;
}

.at-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--at-accent-blue);
	transition: width var(--at-transition);
}

.at-nav-link:hover::after,
.at-nav-link.active::after {
	width: 100%;
}

.at-nav-link:hover {
	color: var(--at-accent-blue);
}

.at-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.at-burger-line {
	width: 28px;
	height: 3px;
	background: var(--at-text-heading);
	border-radius: 2px;
	transition: var(--at-transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.at-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.at-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	z-index: 0;
}

.at-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 153, 204, 0.5) 0%,
		rgba(0, 122, 163, 0.5) 100%
	);
	z-index: 1;
}

.at-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--at-bg-white);
	max-width: 800px;
	padding: 0 var(--at-spacing-md);
	animation: at-fade-up 1s ease-out;
}

.at-hero-title {
	font-size: 3.5rem;
	color: var(--at-bg-white);
	margin-bottom: var(--at-spacing-md);
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.at-hero-subtitle {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: var(--at-spacing-lg);
	line-height: 1.6;
}

.at-hero-cta {
	animation: at-slide-in-left 1s ease-out 0.3s both;
}

/* ============================================
   CARDS
   ============================================ */
.at-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--at-spacing-md);
	margin-top: var(--at-spacing-lg);
}

.at-card {
	background: var(--at-bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--at-shadow-sm);
	transition: var(--at-transition);
	cursor: pointer;
}

.at-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--at-shadow-lg);
}

.at-card-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.at-card-content {
	padding: var(--at-spacing-md);
}

.at-card-title {
	font-size: 1.5rem;
	margin-bottom: var(--at-spacing-sm);
	color: var(--at-text-heading);
}

.at-card-text {
	color: var(--at-text-secondary);
	margin-bottom: var(--at-spacing-md);
	line-height: 1.6;
}

.at-card-link {
	color: var(--at-accent-blue);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.at-card-link:hover {
	gap: 0.8rem;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.at-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--at-spacing-lg);
	align-items: center;
	margin-top: var(--at-spacing-lg);
}

.at-column-image {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: var(--at-shadow-md);
	background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.at-column-content {
	padding: var(--at-spacing-md);
}

.at-column-title {
	font-size: 2.2rem;
	margin-bottom: var(--at-spacing-md);
}

.at-column-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: var(--at-spacing-sm);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.at-testimonials {
	background: var(--at-bg-white);
	padding: var(--at-spacing-xl) 0;
}

.at-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--at-spacing-md);
	margin-top: var(--at-spacing-lg);
}

.at-testimonial-card {
	background: var(--at-bg-primary);
	padding: var(--at-spacing-md);
	border-radius: 12px;
	border-left: 4px solid var(--at-accent-blue);
	transition: var(--at-transition);
}

.at-testimonial-card:hover {
	transform: translateX(8px);
	box-shadow: var(--at-shadow-md);
}

.at-testimonial-text {
	font-style: italic;
	color: var(--at-text-secondary);
	margin-bottom: var(--at-spacing-md);
	line-height: 1.7;
}

.at-testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--at-spacing-sm);
}

.at-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--at-accent-blue),
		var(--at-accent-sand)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--at-bg-white);
	font-weight: 700;
	font-size: 1.5rem;
}

.at-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.at-testimonial-info h4 {
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.at-testimonial-info p {
	margin: 0;
	color: var(--at-text-secondary);
	font-size: 0.9rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.at-contact-section {
	background: var(--at-bg-white);
	padding: var(--at-spacing-xl) 0;
}

.at-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--at-spacing-lg);
	margin-top: var(--at-spacing-lg);
}

.at-form {
	display: flex;
	flex-direction: column;
	gap: var(--at-spacing-md);
}

.at-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.at-form-label {
	font-weight: 600;
	color: var(--at-text-heading);
	font-size: 0.95rem;
}

.at-form-input,
.at-form-textarea {
	padding: 14px 18px;
	border: 2px solid var(--at-divider);
	border-radius: 8px;
	font-family: var(--at-font-primary);
	font-size: 1rem;
	transition: var(--at-transition);
	background: var(--at-bg-primary);
}

.at-form-input:focus,
.at-form-textarea:focus {
	outline: none;
	border-color: var(--at-accent-blue);
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

.at-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.at-form-error {
	color: #d32f2f;
	font-size: 0.85rem;
	margin-top: 0.25rem;
	display: none;
}

.at-form-error.show {
	display: block;
}

.at-map-container {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);

	color: var(--at-text-secondary);
}

.at-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.at-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.at-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.at-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.at-footer {
	background: var(--at-footer-bg);
	padding: var(--at-spacing-xl) 0 var(--at-spacing-md);
}

.at-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--at-spacing-lg);
	margin-bottom: var(--at-spacing-lg);
}

.at-footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: var(--at-spacing-md);
	color: var(--at-text-heading);
}

.at-footer-column p {
	font-size: 0.95rem;
	line-height: 1.7;
}

.at-footer-nav {
	display: flex;
	flex-direction: column;
	gap: var(--at-spacing-sm);
}

.at-footer-link {
	color: var(--at-text-secondary);
	transition: var(--at-transition);
}

.at-footer-link:hover {
	color: var(--at-accent-blue);
	padding-left: 0.5rem;
}

.at-footer-social {
	display: flex;
	gap: var(--at-spacing-sm);
	margin-top: var(--at-spacing-sm);
}

.at-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--at-bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--at-accent-blue);
	transition: var(--at-transition);
}

.at-social-icon:hover {
	background: var(--at-accent-blue);
	color: var(--at-bg-white);
	transform: translateY(-4px);
}

.at-footer-contact-item {
	display: flex;
	align-items: start;
	gap: var(--at-spacing-sm);
	margin-bottom: var(--at-spacing-sm);
}

.at-footer-contact-item i {
	color: var(--at-accent-blue);
	margin-top: 0.25rem;
}

.at-footer-bottom {
	border-top: 1px solid var(--at-divider);
	padding-top: var(--at-spacing-md);
	text-align: center;
	color: var(--at-text-secondary);
	font-size: 0.9rem;
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.at-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--at-bg-white);
	box-shadow: var(--at-shadow-lg);
	padding: var(--at-spacing-md);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform var(--at-transition);
}

.at-cookie-popup.show {
	transform: translateY(0);
}

.at-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--at-spacing-md);
}

.at-cookie-text {
	flex: 1;
}

.at-cookie-text p {
	margin: 0;
}

.at-cookie-text a {
	color: var(--at-accent-blue);
	text-decoration: underline;
}

.at-cookie-actions {
	display: flex;
	gap: var(--at-spacing-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes at-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes at-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes at-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.at-fade-up {
	animation: at-fade-up 0.8s ease-out both;
}

.at-slide-in-left {
	animation: at-slide-in-left 0.8s ease-out both;
}

.at-zoom-in {
	animation: at-zoom-in 0.8s ease-out both;
}

/* Scroll animations */
.at-scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.at-scroll-animate.active {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   DESTINATIONS PAGE
   ============================================ */
.at-page-header {
	background: linear-gradient(135deg, var(--at-accent-blue) 0%, #007aa3 100%);
	padding: var(--at-spacing-xl) 0;
	text-align: center;
	color: var(--at-bg-white);
}

.at-page-title {
	font-size: 3rem;
	color: var(--at-bg-white);
	margin-bottom: var(--at-spacing-sm);
}

.at-page-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin: 0 auto;
}

.at-intro-section {
	padding: var(--at-spacing-lg) 0;
}

.at-intro-text {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.9;
	text-align: center;
}

.at-table-container {
	overflow-x: auto;
	margin: var(--at-spacing-lg) 0;
}

.at-table {
	width: 100%;
	background: var(--at-bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--at-shadow-sm);
}

.at-table th,
.at-table td {
	padding: 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--at-divider);
}

.at-table th {
	background: var(--at-accent-blue);
	color: var(--at-bg-white);
	font-weight: 600;
}

.at-table tr:last-child td {
	border-bottom: none;
}

.at-table tr:hover {
	background: var(--at-bg-primary);
}

/* ============================================
   CULTURE PAGE
   ============================================ */
.at-comparison-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--at-spacing-md);
	margin: var(--at-spacing-lg) 0;
}

.at-comparison-card {
	background: var(--at-bg-white);
	padding: var(--at-spacing-md);
	border-radius: 12px;
	box-shadow: var(--at-shadow-sm);
	border-top: 4px solid var(--at-accent-blue);
}

.at-comparison-card h4 {
	color: var(--at-accent-blue);
	margin-bottom: var(--at-spacing-sm);
}

.at-interview-section {
	background: var(--at-bg-white);
	padding: var(--at-spacing-xl) 0;
}

.at-interview-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--at-spacing-lg);
	margin-top: var(--at-spacing-lg);
}

.at-interview-item {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: var(--at-spacing-md);
	padding: var(--at-spacing-md);
	background: var(--at-bg-primary);
	border-radius: 12px;
	align-items: center;
}

.at-interview-photo {
	width: 200px;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
	background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.at-interview-content h4 {
	color: var(--at-accent-blue);
	margin-bottom: var(--at-spacing-sm);
}

.at-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--at-spacing-md);
	margin: var(--at-spacing-lg) 0;
}

.at-gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--at-shadow-sm);
	cursor: pointer;
	transition: var(--at-transition);
}

.at-gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--at-shadow-md);
}

.at-gallery-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	background: linear-gradient(
		135deg,
		var(--at-accent-blue),
		var(--at-accent-sand)
	);
}

.at-gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
	color: var(--at-bg-white);
	padding: var(--at-spacing-md);
	font-weight: 600;
}

.at-gallery-caption h5,
.at-gallery-caption p {
	color: var(--at-bg-white);
}
/* ============================================
   ABOUT PAGE
   ============================================ */
.at-mission-section {
	background: var(--at-bg-white);
	padding: var(--at-spacing-xl) 0;
}

.at-mission-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.at-mission-text {
	font-size: 1.2rem;
	line-height: 1.9;
	margin-bottom: var(--at-spacing-lg);
}

.at-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--at-spacing-lg);
	margin: var(--at-spacing-lg) 0;
}

.at-team-card {
	background: var(--at-bg-white);
	padding: var(--at-spacing-md);
	border-radius: 12px;
	text-align: center;
	box-shadow: var(--at-shadow-sm);
	transition: var(--at-transition);
}

.at-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--at-shadow-lg);
}

.at-team-photo {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	margin: 0 auto var(--at-spacing-md);
	background: linear-gradient(
		135deg,
		var(--at-accent-blue),
		var(--at-accent-sand)
	);
}

.at-team-photo img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.at-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.at-team-role {
	color: var(--at-accent-blue);
	font-weight: 600;
	margin-bottom: var(--at-spacing-sm);
}

.at-team-bio {
	color: var(--at-text-secondary);
	line-height: 1.7;
}

.at-quote-section {
	background: linear-gradient(135deg, var(--at-accent-blue) 0%, #007aa3 100%);
	padding: var(--at-spacing-xl) 0;
	text-align: center;
	color: var(--at-bg-white);
}

.at-quote-text {
	font-size: 2rem;
	font-style: italic;
	max-width: 800px;
	margin: 0 auto;
	color: var(--at-bg-white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.at-contact-info {
	background: var(--at-bg-white);
	padding: var(--at-spacing-md);
	border-radius: 12px;
	box-shadow: var(--at-shadow-sm);
}

.at-contact-info-item {
	display: flex;
	align-items: start;
	gap: var(--at-spacing-md);
	padding: var(--at-spacing-md) 0;
	border-bottom: 1px solid var(--at-divider);
}

.at-contact-info-item:last-child {
	border-bottom: none;
}

.at-contact-info-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--at-accent-blue);
	color: var(--at-bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.at-contact-info-content h4 {
	margin-bottom: 0.5rem;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.at-policy-content {
	max-width: 900px;
	margin: 0 auto;
	background: var(--at-bg-white);
	padding: var(--at-spacing-lg);
	border-radius: 12px;
	box-shadow: var(--at-shadow-sm);
}

.at-policy-content h2 {
	margin-top: var(--at-spacing-lg);
	margin-bottom: var(--at-spacing-md);
}

.at-policy-content h3 {
	margin-top: var(--at-spacing-md);
	margin-bottom: var(--at-spacing-sm);
}

.at-policy-content ul {
	list-style: disc;
	margin-left: var(--at-spacing-md);
	margin-bottom: var(--at-spacing-md);
}

.at-policy-content li {
	margin-bottom: 0.5rem;
	color: var(--at-text-secondary);
}

/* ============================================
   ACCORDION
   ============================================ */
.at-accordion {
	margin: var(--at-spacing-lg) 0;
}

.at-accordion-item {
	background: var(--at-bg-white);
	border-radius: 8px;
	margin-bottom: var(--at-spacing-sm);
	box-shadow: var(--at-shadow-sm);
	overflow: hidden;
}

.at-accordion-header {
	width: 100%;
	padding: var(--at-spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	background: var(--at-bg-white);
	transition: var(--at-transition);
}

.at-accordion-header:hover {
	background: var(--at-bg-primary);
}

.at-accordion-header h3 {
	margin: 0;
	font-size: 1rem;
	text-align: left;
}

.at-accordion-icon {
	font-size: 1.5rem;
	color: var(--at-accent-blue);
	transition: transform var(--at-transition);
}

.at-accordion-item.active .at-accordion-icon {
	transform: rotate(180deg);
}

.at-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	padding: 0 var(--at-spacing-md);
}

.at-accordion-item.active .at-accordion-content {
	max-height: 2000px;
	padding: 1rem var(--at-spacing-md) var(--at-spacing-md);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.at-hero-title {
		font-size: 2.8rem;
	}

	.at-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.at-contact-grid {
		grid-template-columns: 1fr !important;
	}

	.at-interview-item {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.at-interview-photo {
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.at-section {
		padding: var(--at-spacing-lg) 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.at-hero {
		height: 70vh;
		min-height: 500px;
	}

	.at-hero-title {
		font-size: 2rem;
	}

	.at-hero-subtitle {
		font-size: 1.1rem;
	}

	.at-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background: var(--at-bg-white);
		flex-direction: column;
		padding: var(--at-spacing-xl) var(--at-spacing-md);
		box-shadow: var(--at-shadow-lg);
		transition: right var(--at-transition);
		z-index: 9999;
	}

	.at-nav.active {
		right: 0;
	}

	.at-burger {
		display: flex;
		z-index: 10000;
	}

	.at-burger.active .at-burger-line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.at-burger.active .at-burger-line:nth-child(2) {
		opacity: 0;
	}

	.at-burger.active .at-burger-line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.at-cards-grid {
		grid-template-columns: 1fr;
	}

	.at-two-column {
		grid-template-columns: 1fr;
	}

	.at-footer-grid {
		grid-template-columns: 1fr;
		gap: var(--at-spacing-md);
	}

	.at-cookie-content {
		flex-direction: column;
	}

	.at-cookie-actions {
		width: 100%;
		flex-direction: column;
	}

	.at-page-title {
		font-size: 2rem;
	}

	.at-table-container {
		font-size: 0.9rem;
	}

	.at-table th,
	.at-table td {
		padding: 0.8rem;
	}
}

@media (max-width: 480px) {
	:root {
		--at-spacing-md: 1rem;
		--at-spacing-lg: 2rem;
		--at-spacing-xl: 3rem;
	}

	.at-btn {
		padding: 12px 24px;
		font-size: 0.9rem;
	}

	.at-quote-text {
		font-size: 1.5rem;
	}

	.at-team-grid {
		grid-template-columns: 1fr;
	}

	.at-testimonials-grid,
	.at-gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

:root {
	--at-legal-bg-main: #fafafa;
	--at-legal-bg-content: #ffffff;
	--at-legal-accent-1: #0099cc;
	--at-legal-accent-2: #ffd166;
	--at-legal-divider: #e0e0e0;
	--at-legal-text-primary: #333333;
	--at-legal-text-secondary: #666666;
	--at-legal-text-heading: #111111;
	--at-legal-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
	--at-legal-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
	--at-legal-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.at-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* ===== CONTENT WRAPPER ===== */
.at-legal-content {
	background-color: var(--at-legal-bg-content);
	border-radius: 12px;
	padding: 50px;
	box-shadow: var(--at-legal-shadow-soft);
	animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== HEADER SECTION ===== */
.at-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--at-legal-divider);
	position: relative;
}

.at-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--at-legal-accent-1),
		var(--at-legal-accent-2)
	);
	border-radius: 2px;
}

.at-legal-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--at-legal-text-heading);
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.at-legal-subtitle {
	font-size: 18px;
	color: var(--at-legal-text-secondary);
	margin-bottom: 24px;
	font-weight: 400;
}

.at-legal-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	font-size: 14px;
	color: var(--at-legal-text-secondary);
}

.at-legal-date,
.at-legal-version {
	display: inline-block;
	padding: 6px 12px;
	background-color: var(--at-legal-bg-main);
	border-radius: 20px;
	border: 1px solid var(--at-legal-divider);
}

/* ===== CONTACT BLOCK ===== */
.at-legal-contact-block {
	margin-top: 30px;
	padding: 20px;
	background: linear-gradient(
		135deg,
		rgba(0, 153, 204, 0.05),
		rgba(255, 209, 102, 0.05)
	);
	border-left: 4px solid var(--at-legal-accent-1);
	border-radius: 8px;
}

.at-legal-contact-title {
	font-weight: 600;
	color: var(--at-legal-text-heading);
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.at-legal-contact-item {
	font-size: 14px;
	color: var(--at-legal-text-secondary);
	line-height: 1.8;
}

/* ===== SECTIONS ===== */
.at-legal-section {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--at-legal-divider);
	transition: var(--at-legal-transition);
}

.at-legal-section:last-of-type {
	border-bottom: none;
}

.at-legal-section:hover {
	transform: translateX(4px);
}

.at-legal-section-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--at-legal-text-heading);
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--at-legal-accent-1);
	display: inline-block;
	letter-spacing: -0.3px;
}

/* ===== TEXT CONTENT ===== */
.at-legal-text {
	font-size: 16px;
	color: var(--at-legal-text-primary);
	line-height: 1.8;
	margin-bottom: 16px;
	text-align: justify;
}

/* ===== FOOTER ===== */
.at-legal-footer {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid var(--at-legal-divider);
	text-align: center;
}

.at-legal-footer-text {
	font-size: 18px;
	color: var(--at-legal-text-secondary);
	margin-bottom: 30px;
	font-weight: 500;
	font-style: italic;
}

.at-legal-company-info {
	background: linear-gradient(
		135deg,
		rgba(0, 153, 204, 0.08),
		rgba(255, 209, 102, 0.08)
	);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid var(--at-legal-divider);
}

.at-legal-company-info h3 {
	font-size: 24px;
	color: var(--at-legal-accent-1);
	margin-bottom: 8px;
	font-weight: 700;
}

.at-legal-company-info p {
	font-size: 14px;
	color: var(--at-legal-text-secondary);
	line-height: 1.8;
}

.at-legal-company-info p:first-of-type {
	margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.at-legal-button {
	display: inline-block;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--at-legal-accent-1), #0088bb);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--at-legal-transition);
	text-decoration: none;
	box-shadow: var(--at-legal-shadow-soft);
}

.at-legal-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--at-legal-shadow-medium);
	background: linear-gradient(135deg, #0088bb, var(--at-legal-accent-1));
}

.at-legal-button:active {
	transform: translateY(0);
}

.at-legal-button-secondary {
	background: var(--at-legal-bg-main);
	color: var(--at-legal-accent-1);
	border: 2px solid var(--at-legal-accent-1);
}

.at-legal-button-secondary:hover {
	background-color: var(--at-legal-accent-1);
	color: #ffffff;
}

/* ===== ALERT BOXES ===== */
.at-legal-alert {
	padding: 16px;
	border-radius: 8px;
	margin: 20px 0;
	border-left: 4px solid;
}

.at-legal-alert-info {
	background-color: rgba(0, 153, 204, 0.1);
	color: var(--at-legal-accent-1);
	border-left-color: var(--at-legal-accent-1);
}

.at-legal-alert-warning {
	background-color: rgba(255, 209, 102, 0.15);
	color: #d97a04;
	border-left-color: #ffd166;
}

.at-legal-alert-success {
	background-color: rgba(52, 168, 83, 0.1);
	color: #34a853;
	border-left-color: #34a853;
}

/* ===== BADGES ===== */
.at-legal-badge {
	display: inline-block;
	padding: 4px 10px;
	background-color: var(--at-legal-accent-1);
	color: #ffffff;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.at-legal-badge-secondary {
	background-color: var(--at-legal-accent-2);
	color: var(--at-legal-text-heading);
}

/* ===== HIGHLIGHTS ===== */
.at-legal-highlight {
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 209, 102, 0.4),
		transparent
	);
	padding: 2px 6px;
	border-radius: 3px;
	transition: var(--at-legal-transition);
}

.at-legal-highlight:hover {
	background: linear-gradient(
		120deg,
		transparent,
		rgba(0, 153, 204, 0.3),
		transparent
	);
}

/* ===== CARDS ===== */
.at-legal-card {
	background-color: var(--at-legal-bg-content);
	border: 1px solid var(--at-legal-divider);
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	transition: var(--at-legal-transition);
	box-shadow: var(--at-legal-shadow-soft);
}

.at-legal-card:hover {
	box-shadow: var(--at-legal-shadow-medium);
	transform: translateY(-4px);
}

.at-legal-card-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--at-legal-text-heading);
	margin-bottom: 10px;
}

.at-legal-card-description {
	font-size: 14px;
	color: var(--at-legal-text-secondary);
	line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.at-legal-breadcrumb {
	margin-bottom: 30px;
	font-size: 14px;
	color: var(--at-legal-text-secondary);
}

.at-legal-breadcrumb a {
	color: var(--at-legal-accent-1);
	text-decoration: none;
}

.at-legal-breadcrumb a:hover {
	text-decoration: underline;
}

.at-legal-breadcrumb span {
	margin: 0 8px;
	color: var(--at-legal-divider);
}

/* ===== TABLE OF CONTENTS ===== */
.at-legal-toc {
	background: linear-gradient(
		135deg,
		rgba(0, 153, 204, 0.05),
		rgba(255, 209, 102, 0.05)
	);
	border: 1px solid var(--at-legal-divider);
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
}

.at-legal-toc-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--at-legal-text-heading);
	margin-bottom: 12px;
}

.at-legal-toc-list {
	list-style: none;
	margin: 0;
}

.at-legal-toc-list li {
	margin-bottom: 8px;
}

.at-legal-toc-list a {
	color: var(--at-legal-accent-1);
	font-size: 14px;
}

/* ===== DEFINITION LIST ===== */
.at-legal-dl {
	margin: 20px 0;
}

.at-legal-dt {
	font-weight: 600;
	color: var(--at-legal-text-heading);
	margin-top: 12px;
	margin-bottom: 4px;
}

.at-legal-dd {
	margin-left: 20px;
	color: var(--at-legal-text-secondary);
	margin-bottom: 12px;
}

/* ===== TIMELINE ===== */
.at-legal-timeline {
	position: relative;
	padding: 20px 0;
}

.at-legal-timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--at-legal-accent-1),
		var(--at-legal-accent-2)
	);
}

.at-legal-timeline-item {
	margin-bottom: 20px;
	padding-left: 40px;
	position: relative;
}

.at-legal-timeline-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	background-color: var(--at-legal-accent-1);
	border: 3px solid var(--at-legal-bg-content);
	border-radius: 50%;
	box-shadow: var(--at-legal-shadow-soft);
}

.at-legal-timeline-date {
	font-size: 14px;
	font-weight: 600;
	color: var(--at-legal-accent-1);
}

.at-legal-timeline-content {
	font-size: 15px;
	color: var(--at-legal-text-primary);
	margin-top: 4px;
}

/* ===== STATISTICS BOX ===== */
.at-legal-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.at-legal-stat-item {
	background: linear-gradient(
		135deg,
		rgba(0, 153, 204, 0.08),
		rgba(255, 209, 102, 0.08)
	);
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--at-legal-divider);
}

.at-legal-stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--at-legal-accent-1);
	margin-bottom: 8px;
}

.at-legal-stat-label {
	font-size: 14px;
	color: var(--at-legal-text-secondary);
	font-weight: 500;
}

/* ===== TABLET STYLES (768px) ===== */
@media (max-width: 768px) {
	.at-legal-container {
		padding: 24px 16px;
	}

	.at-legal-content {
		padding: 32px 24px;
		border-radius: 8px;
	}

	.at-legal-title {
		font-size: 2rem;
	}

	.at-legal-section-title {
		font-size: 20px;
	}

	.at-legal-header {
		margin-bottom: 32px;
		padding-bottom: 20px;
	}

	.at-legal-meta {
		flex-direction: column;
		gap: 12px;
	}

	.at-legal-stats {
		grid-template-columns: 1fr;
	}

	table {
		font-size: 14px;
	}

	th,
	td {
		padding: 10px 8px;
	}
}

/* ===== MOBILE STYLES (480px) ===== */
@media (max-width: 480px) {
	body {
		font-size: 15px;
	}

	.at-legal-container {
		padding: 16px 12px;
	}

	.at-legal-content {
		padding: 20px 16px;
		border-radius: 6px;
	}

	.at-legal-title {
		font-size: 1.3rem;
		margin-bottom: 8px;
	}

	.at-legal-subtitle {
		font-size: 16px;
	}

	.at-legal-section-title {
		font-size: 18px;
	}

	.at-legal-text {
		text-align: left;
		font-size: 15px;
	}

	.at-legal-header {
		margin-bottom: 24px;
		padding-bottom: 16px;
	}

	.at-legal-contact-block {
		padding: 16px;
	}

	.at-legal-company-info {
		padding: 20px;
	}

	.at-legal-button {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
	}

	.at-legal-meta {
		flex-direction: column;
		gap: 8px;
		font-size: 12px;
	}

	.at-legal-date,
	.at-legal-version {
		padding: 4px 8px;
		font-size: 12px;
	}

	table {
		font-size: 13px;
		overflow-x: auto;
		display: block;
	}

	thead {
		display: none;
	}

	tr {
		display: block;
		border: 1px solid var(--at-legal-divider);
		margin-bottom: 12px;
		border-radius: 6px;
		overflow: hidden;
	}

	td {
		display: block;
		text-align: right;
		padding: 8px;
		border: none;
		border-bottom: 1px solid var(--at-legal-divider);
	}

	td::before {
		content: attr(data-label);
		float: left;
		font-weight: 600;
		color: var(--at-legal-text-heading);
	}

	.at-legal-timeline {
		padding-left: 0;
	}

	.at-legal-timeline::before {
		left: 4px;
	}

	.at-legal-timeline-item {
		padding-left: 32px;
	}

	.at-legal-timeline-item::before {
		left: -4px;
		width: 12px;
		height: 12px;
	}
}
