/*
	===========================================
	DESIGN TOKENS - Single Source of Truth
	===========================================

	Modify these variables to customize the entire site
*/

:root {
	/* Primary Colors */
	--color-primary: #E27C6A;           /* Soft Coral - CTAs, buttons only */
	--color-secondary: #1A2A44;         /* Deep Navy Blue - Headers, hero */

	/* Brand Colors */
	--color-gold: #1A2A44;              /* Deep Navy - Headings, nav links */
	--color-gold-light: #DCC6A1;        /* Warm Sand Beige - Borders, accents */
	--color-beige: #F7F5F1;             /* Off White - Backgrounds */
	--color-beige-dark: #DCC6A1;        /* Warm Sand - Alternative */

	/* Neutral Colors */
	--color-text: #343A40;              /* Charcoal - Primary text */
	--color-text-light: #555555;        /* Secondary text */
	--color-white: #ffffff;
	--color-black: #000000;

	/* Footer Colors */
	--color-footer-link: #DCC6A1;       /* Warm Sand - Footer links */

	/* UI Colors */
	--color-gold-dark: #C56A5A;          /* Darker coral - Button hover */
	--color-gold-medium: #DCC6A1;        /* Warm Sand - Button active, borders */
	--color-gold-accent: #1A2A44;        /* Deep Navy - accent */
	--color-background-light: #F7F5F1;  /* Off White - Light background */
	--color-background-alt: #F7F5F1;    /* Off White - Alternative background */

	/* Form/Input Colors */
	--color-border: #DCC6A1;             /* Warm Sand - Input borders */
	--color-border-light: #DCC6A1;       /* Warm Sand - Light borders */
	--color-border-dark: #343A40;        /* Charcoal - Dark borders */
	--color-placeholder: #ABABAB;        /* Placeholder text */
	--color-muted: #7f7f7f;              /* Muted text */
	--color-muted-dark: #343A40;         /* Charcoal - Darker muted */
	--color-error: #E27C6A;              /* Coral - Error/danger */

	/* Typography */
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Poppins', sans-serif;

	/* Font Sizes */
	--font-size-base: 14px;
	--font-size-sm: 0.8rem;
	--font-size-lg: 1rem;
	--font-size-xl: 1.125rem;
	--font-size-2xl: 2.25rem;

	/* Font Weights */
	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-bold: 700;
	--font-weight-black: 900;

	/* Spacing */
	--spacing-xs: 10px;
	--spacing-sm: 20px;
	--spacing-md: 30px;
	--spacing-lg: 50px;
	--spacing-xl: 80px;
	--spacing-2xl: 100px;
	--spacing-3xl: 120px;
	--spacing-4xl: 200px;

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.35s ease-in-out;
	--transition-slow: 0.5s ease;

	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	color: var(--color-text);
}

/* Visually hidden - for accessibility/SEO (H1 tags) */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

main {
	margin-top: -40px;
}

.red {color: var(--color-primary) !important;}
.blue {color: var(--color-secondary);}
.gold {color: var(--color-gold);}
.light-gold {color: var(--color-gold-light);}
.beige {color: var(--color-beige-dark);}
.grey {color: var(--color-text);}
.white {color: var(--color-white);}

.pt-120 {padding-top: 120px;}
.pt-100 {padding-top: 100px;}
.pt-80 {padding-top: 80px;}
.pt-50 {padding-top: 50px;}
.pb-120 {padding-bottom: 120px;}
.pb-100 {padding-bottom: 100px;}
.pb-80 {padding-bottom: 80px;}
.pb-50 {padding-bottom: 50px;}

.mt-200 {margin-top: 200px;}
.mt-150 {margin-top: 150px;}
.mt-100 {margin-top: 100px;}
.mt-80 {margin-top: 80px;}
.mt-50 {margin-top: 50px;}
.mb-200 {margin-bottom: 200px;}
.mb-150 {margin-bottom: 150px;}
.mb-100 {margin-bottom: 100px;}
.mb-80 {margin-bottom: 80px;}
.mb-50 {margin-bottom: 50px;}

h1 {
	font-size: var(--font-size-2xl);
	line-height: 3.125rem;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	color: var(--color-secondary);
	margin-bottom: var(--spacing-lg);
}

h2 {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: var(--spacing-md);
}

h2 span {
	font-size: var(--font-size-xl);
/* 	letter-spacing: 1.5rem; */
	font-weight: var(--font-weight-black);
	color: var(--color-primary);
	margin-left: var(--spacing-xs);
}

h3 {
	font-size: var(--font-size-sm);
	line-height: 1.5rem;
	font-weight: var(--font-weight-black);
	letter-spacing: 0.06rem;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--spacing-xs);
}

h4 {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 900;
	letter-spacing: .06rem;
	text-transform: uppercase;
	color: var(--color-primary);
}

h5 {
	font-size: .875rem;
	line-height: 1.5rem;
	font-weight: 700;
	letter-spacing: .06rem;
	color: var(--color-primary);
	margin-bottom: 20px;
}

p {
	font-size: 1rem;
	line-height: 1.875rem;
	margin-bottom: 1.875rem;
}

p.small-title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.25rem;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.small p,
p.small {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 1.5rem;
}

p.lead-in {
	font-size: 1.125rem;
	line-height: 2.125rem;
}

ul.style-dash {
	list-style: none;
	margin-left: -15px;
	/*margin-right: -40px;*/
}

ul.style-dash li {
	padding-left: 0;
	padding-right: 60px;
	margin-top: 10px;
}

ul.style-dash.spaced-list li {
	margin-top: 20px;
}

ul.style-dash li:before {
	display: inline-block;
	position: absolute;
	content: "—";
	margin-left: -1.625rem;
	padding-left: 0;
	font-size: 1.125rem;
	line-height: 1.375rem;
	color: var(--color-primary);
}

ul.style-border {
	list-style: none !important;
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 24px !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

ul.style-border li {
	padding: 28px !important;
	margin: 0 !important;
	border-left: none !important;
	background: var(--color-white) !important;
	border-radius: 8px !important;
	position: relative !important;
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
	border: 1px solid var(--color-gold-light) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

ul.style-border li:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

ul.style-border li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--color-primary);
	border-radius: 8px 8px 0 0;
}

ul.style-border li h3 {
	font-size: 0.95rem;
	letter-spacing: 0.08rem;
	margin-bottom: 0.6rem;
	color: var(--color-secondary);
}

ul.style-border li p {
	margin-bottom: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--color-text-light);
}

@media (max-width: 991px) {
	ul.style-border {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 575px) {
	ul.style-border {
		grid-template-columns: 1fr !important;
	}
}

ul.style-none {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	/*margin-right: -40px;*/
}

ul.style-none li {
	/*padding-left: 0px;*/
	/*padding-right: 30px;*/
	/*padding-bottom: 0;*/
	margin-bottom: 50px;
}

ul.style-none li p {
	margin-bottom: 0;
}

@media (max-width: 767px) {

	h1 {
		font-size: 2.25rem !important;
		line-height: 2.5rem;
	}

	h2 {
		letter-spacing: 0.25rem;
	}

	/* Reduce large margins on mobile */
	.mt-200 { margin-top: 80px; }
	.mt-150 { margin-top: 60px; }
	.mt-100 { margin-top: 50px; }
	.mt-80 { margin-top: 50px; }
	.mb-200 { margin-bottom: 80px; }
	.mb-150 { margin-bottom: 60px; }
	.mb-100 { margin-bottom: 50px; }
	.mb-80 { margin-bottom: 50px; }

	/* Small title letter spacing */
	.small-title {
		letter-spacing: 0.25rem;
	}

}


@media (min-width: 992px) {

	ul.style-dash {
		margin-left: -15px;
		margin-right: -40px;
	}

}

hr {
	margin-top: 40px;
	margin-bottom: 40px;
}

hr.tall {
	margin-top: 80px;
	margin-bottom: 80px;
}


/*
	###################################
	PAGINATION
	###################################
*/


.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--color-gold-light);
  background-color: var(--color-white);
  border: 1px solid var(--color-gold-light);
}

.page-link:hover {
  z-index: 2;
  color: var(--color-gold-light);
  text-decoration: none;
  background-color: var(--color-background-light);
  border-color: var(--color-gold-light);
}

.page-item.active .page-link {
  z-index: 3;
  color: var(--color-white);
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}


/*
	###################################
	LINKS / BUTTONS
	###################################
*/



a {
	color: var(--color-gold-light);
	transition: color .2s ease-in-out,
	background-color .2s ease-in-out,
	border-color .2s ease-in-out,
	box-shadow .2s ease-in-out,
	opacity .2s ease-in-out;
}

a:hover {
	color: var(--color-gold);
	text-decoration: none;
}


a.btn:hover {
	opacity: 1;
}

.side-link {
	display: block;
	position: relative;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-primary);
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-gold-light);
}

.side-link:first-child {
	margin-top: -20px;
}

.side-link::after {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  content: '';
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23991F31" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  transition: all .2s ease-in-out;
}

.side-link:hover {
	color: var(--color-gold);
}

.side-link:hover::after {
  right: -8px;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23907E4B" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

.inline-link {
	display: inline-block;
	position: relative;
	font-size: 1.125rem;
	color: var(--color-primary);
	/*text-transform: uppercase;*/
	padding-right: 50px;
}

.inline-link::after {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 1px;
  width: 40px;
  height: 40px;
  content: '';
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23991F31" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
  background-repeat: no-repeat;
  background-size: 1.75rem 1.75rem;
  transition: all .2s ease-in-out;
}

.inline-link:hover {
	color: var(--color-gold);
}

.inline-link:hover::after {
  right: -8px;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23907E4B" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

/* —— SMALL ——*/

.inline-link.small-link {
	font-size: 0.875rem;
	padding-right: 50px;
}

.inline-link.small-link::after {
  background-size: 1.25rem 1.25rem;
}

/* —— GOLD ——*/

.inline-link.gold-link {
	color: var(--color-gold);
}

.inline-link.gold-link::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23907E4B" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}


.inline-link.gold-link:hover {
	color: var(--color-gold-accent);
}

.inline-link.gold-link:hover::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%2372580D" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

/* —— BLUE ——*/

.inline-link.blue-link {
	color: var(--color-secondary);
}

.inline-link.blue-link::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23151B49" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

.inline-link.blue-link:hover {
	color: var(--color-gold);
}

.inline-link.blue-link:hover::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23907E4B" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

/* —— WHITE ——*/

.inline-link.white-link {
	color: var(--color-white);
}

.inline-link.white-link::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23ffffff" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

.inline-link.white-link:hover {
	color: var(--color-gold-light);
}

.inline-link.white-link:hover::after {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23BFAF74" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
}

.download-link {
	display: inline-block;
	width: 200px;
	font-size: .75rem;
	line-height: .875rem;
	font-weight: 700;
	letter-spacing: .125rem;
	text-transform: uppercase;
}

.download-link .fa {
	display: inline-block;
	margin-top: 2px;
	margin-right: 10px;
	font-size: 1.5rem;
}

.download-link.red-link {
	color: var(--color-primary);
}

.download-link.blue-link {
	color: var(--color-secondary);
}

.download-link.red-link:hover,
.download-link.blue-link:hover {
	color: var(--color-gold);
}









.btn {
	position: relative;
	font-weight: 700;
	border: 1px solid transparent;
	padding: 0.75rem 2rem;
	font-size: 1.375rem;
	line-height: 1.5;
/* 	width: 360px; */
}

.btn-primary {
	color: var(--color-white);
	background-color: var(--color-gold-dark);
	border-color: var(--color-gold-dark);
}

.btn-primary:hover {
	color: var(--color-white);
	background-color: var(--color-gold-medium);
	border-color: var(--color-gold-medium);
}

.btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  width: 50px;
  height: 23px;
/*   background: rgba(0, 0, 0, 0.2); */
}

.btn span::after {
  display: inline-block;
  position: absolute;
  right: 10px;
  width: 30px;
  height: 23px;
  content: '';
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-arrow-right" fill="%23ffffff" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"/><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"/></svg>');
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  transition: all .2s ease-in-out;


}

.btn:hover span::after {
  opacity: 1;
  right: 0;
}


/*
	###################################
	HEADER / NAVIGATION
	###################################
*/

#logo-header {
    transition: var(--transition-normal);
}

@media (max-width: 767px) {

	#logo-header {
		max-width: 250px;
	}
}

.navbar {
	background-color: rgba(255,255,255,1);
    padding: 2.25rem 1rem 2.25rem 1rem;
    transition: var(--transition-normal);
}

.navbar-light .navbar-nav {
    align-items: stretch;
}

.navbar-light .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-light .navbar-nav .nav-item:not(.lang-selector)::after {
    content: '•';
    color: var(--color-primary);
    margin: 0 0.75rem;
    font-size: 1.25rem;
}

.navbar-light .navbar-nav .nav-item:nth-last-child(2)::after,
.navbar-light .navbar-nav .nav-item.lang-selector::after {
    display: none;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 1.5rem 0.75rem;
    text-align: center;
    border-top: 1px solid var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-light .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 1px solid var(--color-gold-light);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--color-gold);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

#navbarTop {
	margin-top: 0px;
}


@media (max-width: 992px) {
	.navbar-light .navbar-nav .nav-link br {
	    display: none;
	}
}


@media (min-width: 991px) {

	/*  CHANGES FOR EXPANDED MENU  */

	#navbarTop {
		padding-top: 0;
	}

	.navbar {
		background-color: rgba(255,255,255,0.9);
	}

	.navbar-light .navbar-nav .nav-link {
	    font-size: 1.125rem;
	    line-height: 1.25;
	    padding: 0.125rem 0.75rem;
	    text-align: right;
        border: none;
	}

	.navbar-light .navbar-nav .nav-item:last-child .nav-link {
	    padding-right: 0;
	    border: 0;
	}

	.navbar-light .navbar-nav.navbarMinor .nav-link {
	    font-size: 0.875rem;
	    font-weight: 400;
	    color: var(--color-gold-light);
	}

	.navbar-light .navbar-nav.navbarMinor .nav-link:focus,
	.navbar-light .navbar-nav.navbarMinor .nav-link:hover {
	    color: var(--color-primary);
	}

}

/* Language Dropdown */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-selector .nav-link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1;
    margin-top: -4px;
}

.lang-toggle-btn {
    direction: ltr !important;
}

.lang-caret {
    font-size: 0.5rem;
    margin-left: 4px;
}

/* Mobile menu caret adjustment */
.navbar-collapse.show .lang-caret {
    position: relative;
    top: -3px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--color-beige);
}

.lang-option.active {
    background: var(--color-beige);
}

.lang-flag {
    font-size: 1.25rem;
}

.lang-name {
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.services-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

.services-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid var(--color-beige);
}

.services-dropdown-item:last-child {
    border-bottom: none;
}

.services-dropdown-item:hover {
    background: var(--color-beige);
    color: var(--color-primary);
}

.services-dropdown-item.active {
    background: var(--color-beige);
    color: var(--color-primary);
}

.dropdown-menu {
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: var(--color-white);
    border: 1px solid var(--color-gold-medium);
    border-radius: 0rem;
}

.dropdown-item {
	font-size: 1rem;
	text-transform: uppercase;
    padding: .5rem 1.5rem;
    font-weight: 400;
    color: #58585B;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--color-gold-dark);
    text-decoration: none;
    background: none;
    /*background-color: #f8f9fa;*/
}

/*#homepage .navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}*/

#homepage .navbar {
	background-color: rgba(255,255,255,0);
	transition: all 0.35s ease-in-out;
}

#homepage .navbar.no-transition,
#homepage .navbar.no-transition #logo-header {
	transition: none;
}

#homepage .navbar.scrolled {
	background-color: rgba(255,255,255,0.98);
	box-shadow: var(--shadow-md);
	padding-top: 1rem;
	padding-bottom: 1rem;
}

#homepage .navbar.scrolled #logo-header {
	max-height: 40px;
}
#homepage .nav-dark .navbar-toggler {
    background-color: rgba(255,255,255,.5);
    border: none;
}

#homepage .nav-dark .navbar-nav .nav-link {
    color: var(--color-white);
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

#homepage .nav-dark .navbar-nav .active>.nav-link,
#homepage .nav-dark .navbar-nav .nav-link.active,
#homepage .nav-dark .navbar-nav .nav-link.show,
#homepage .nav-dark .navbar-nav .show>.nav-link {
    color: var(--color-gold-light);
}

#homepage .nav-dark .navbar-nav .nav-link:focus,
#homepage .nav-dark .navbar-nav .nav-link:hover {
    color: var(--color-gold-light);
}

@media (max-width: 992px) {

	.navbar-collapse.show {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color-white);
		z-index: 1050;
		padding: 80px 30px 30px;
		display: flex !important;
		flex-direction: column;
		animation: slideIn 0.3s ease;
	}

	.mobile-menu-close {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 2.5rem;
		color: var(--color-secondary);
		cursor: pointer;
		line-height: 1;
		padding: 0;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}

	@keyframes slideIn {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.navbar-collapse.show .navbar-nav {
		flex-direction: column;
		align-items: stretch !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
	}

	.navbar-light .navbar-collapse.show .navbar-nav .nav-item {
		width: 100%;
		text-align: center;
		margin-bottom: 0;
		display: block !important;
	}

	.navbar-light .navbar-collapse.show .navbar-nav .nav-item::after,
	.navbar-light .navbar-collapse.show .navbar-nav .nav-item:not(.lang-selector)::after {
		display: none !important;
		content: none !important;
		visibility: hidden !important;
	}

	.navbar-light .navbar-collapse.show .navbar-nav .nav-link {
		font-size: 1.25rem !important;
		padding: 20px 0 !important;
		border: none !important;
		border-bottom: 1px solid var(--color-gold-light) !important;
		display: block !important;
		width: 100% !important;
		color: var(--color-secondary) !important;
		margin: 0 !important;
		text-align: center !important;
	}

	.navbar-light .navbar-collapse.show .navbar-nav .nav-link.active {
		color: var(--color-primary) !important;
		font-weight: 600;
	}

	.navbar-light .navbar-collapse.show .navbar-nav .nav-item:last-child .nav-link {
		border-bottom: none !important;
	}

	.navbar-collapse.show .lang-selector {
		margin-top: 20px;
		justify-content: center;
		display: flex;
		align-items: center;
	}

	.navbar-collapse.show .lang-selector .nav-link {
		margin-top: 0 !important;
		display: flex !important;
		align-items: center !important;
		gap: 0.25rem !important;
	}

	/* RTL mobile menu - keep language selector LTR for flag/caret order */
	[dir="rtl"] .navbar-collapse.show .lang-selector {
		direction: ltr;
	}

	.navbar-collapse.show .lang-dropdown {
		position: static;
		box-shadow: none;
		border: 1px solid var(--color-border);
		margin-top: 10px;
	}

	.navbar-collapse.show .services-dropdown-menu {
		position: static;
		box-shadow: none;
		border: 1px solid var(--color-border);
		margin-top: 10px;
		min-width: 100%;
	}

	#homepage .nav-dark .navbar-collapse.show {
		background: var(--color-white);
	}

	#homepage .nav-dark .navbar-collapse.show .nav-link {
		color: var(--color-secondary) !important;
		text-shadow: none;
	}

}


/*
	###################################
	CALL OUT
	###################################
*/


#callout {
	/*margin-top: -120px;*/
	padding-top: 100px;
	padding-bottom: 100px;
	background: #3a6186 url('/bg-news.svg') center top / cover no-repeat;
	color: var(--color-white);
}


#callout h2 {
	margin-bottom: 50px;
}




/*
	###################################
	GET IN TOUCH CONTACT FORM
	###################################
*/

#contact {
	padding-top: 100px;
	padding-bottom: 100px;
}

#contact h2 {
	font-size: 1.375rem;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

#contact p span {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.125rem;
	color: var(--color-gold);
}

#contact .form-control {
    display: block;
    width: 100%;
    height: calc(1em + 1.75rem + 2px);
    padding: .75rem .75rem;
    margin-bottom: 15px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#contact ::placeholder,
#contact select { /* Chrome/Opera/Safari */
	font-size: 0.875rem;
	color: var(--color-placeholder) !important;
	padding: .75rem .375rem;
}

#contact textarea.form-control {
	height: calc(3 * 47px);
}

#contact label.form-control {
	color: var(--color-placeholder) !important;
}

#contact form .btn {
    padding: .8rem 2rem;
    font-size: 0.875rem;
    line-height: 1.125;
    letter-spacing: .25rem;
    text-transform: uppercase;
    width: 100%;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

#contact form .btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Prevent iOS zoom on form inputs */
@media (max-width: 767px) {
	#contact .form-control,
	#contact ::placeholder,
	#contact-form .form-control,
	#contact-form ::placeholder {
		font-size: 1rem;
	}
}

#contact .alert p,
#contact-form .alert p {
	font-size: 0.875rem;
	text-align: center;
	margin-bottom: 0;
}

#contact span.error,
#contact-form span.error {
    display: block;
    width: 100%;
    margin-left: 5px;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 80%;
    color: var(--color-error);
}

.grecaptcha-notice {
	font-size: 0.75rem;
	color: var(--color-placeholder);
}


/*
	###################################
	FOOTER
	###################################
*/

footer {
	position: relative;
	background: #3a6186 url(/bg-footer.svg) center center / cover no-repeat ;
	font-size: .875rem;
	color: var(--color-white);
}

footer #footer-links ul {
	margin-bottom: 0.5rem;
}

footer #footer-top {
	padding-top: 40px; 
}

footer #footer-bottom {
	padding-top: 10px; 
	padding-bottom: 10px; 
	font-size: 0.75rem;
	color: var(--color-footer-link);
}

footer p.address {
	font-size: 0.75rem;
	line-height: 1rem;
	margin-top: 20px;
}

footer a {
	color: var(--color-white);
}

footer #footer-bottom a {
	color: var(--color-footer-link);
}

footer a:hover,
footer #footer-bottom a:hover {
	color: var(--color-gold-light);
	text-decoration: none;
}

/* Footer - always LTR layout regardless of page direction */
footer {
	direction: ltr !important;
}

.footer-links-col {
	text-align: right;
}

.footer-credit {
	text-align: right;
}

@media (max-width: 991px) {
	.footer-links-col {
		text-align: left;
		margin-top: 20px;
	}

	.footer-credit {
		text-align: left;
		margin-top: 10px;
	}
}

/*
	###################################
	JUMBOTRONS / BGs
	###################################
*/

/*.header-footer {
    background: #3a6186 url(/assets/images/header-footer.svg) center center / cover no-repeat ;
    position: absolute;
    width: 100%;
    height: 240px;
    z-index: 999;
    bottom: -1px;
    margin: 0;
}*/

.jumbotron {
	position: relative;
	background: #3a6186 url("/hero-image.jpg");
	background-size: cover;
	background-position: left top;
	height: 100vh;
	min-height: 650px;
	border-radius: 0;
	padding: 4rem 2rem;
	z-index: 1;
}

/* Hero gradient overlay removed */

.jumbotron > .container {
	position: relative;
	z-index: 1;
}


.hero {
    position: relative;
    text-align: center;
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-top: 166px;
}

@media (max-width: 767px) {
	.jumbotron {
		padding: 1rem 0rem;
	}
}

/* Hero Card Styles */
.hero-card {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 60px;
	text-align: left;
	max-width: 420px;
	z-index: 1;
	background: rgba(26, 42, 68, 0.85);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	margin-top: 40px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hero-card .btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.hero-card .btn-primary:hover {
	background-color: var(--color-gold-light);
	border-color: var(--color-gold-light);
	color: var(--color-secondary);
}

html, body {
	overflow-x: hidden;
	max-width: 100vw;
}

@media (max-width: 991px) {
	.hero-card {
		right: 30px;
		left: 30px;
		max-width: none;
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.hero-card {
		position: relative;
		top: auto;
		transform: none;
		right: auto;
		left: auto;
		margin: 80px 0 30px;
		max-width: 100%;
		width: calc(100% - 30px);
		margin-left: auto;
		margin-right: auto;
	}

	.jumbotron {
		height: auto;
		min-height: auto;
		padding-bottom: 2rem;
	}
}

@media (max-width: 992px) {
	.hero {
	    margin-top: 130px;
	}
}

.hero-bg-wrapper {
    transform: skewY(5deg);
    position: absolute;
    top: -120px;
    bottom: 120px;
    right: 0;
    left: 0;
    overflow: hidden;
}

.hero-bg {
    background: #3a6186 url(/assets/relocate-cy/images/bg-header.jpg) center top /*120px*/ no-repeat;
    background-size: cover /*contain*/;
    /*background-attachment: fixed;*/
    position: absolute;
    top: 120px;
    bottom: -120px;
    right: 0;
    left: 0;
    transform: skewY(-5deg);
    overflow: hidden;
}

#fund-services .hero-bg {
    background: #3a6186 url(/assets/images/bg-fs.jpg) center top /*120px*/ no-repeat;
    background-size: cover /*contain*/;
}

#corporate-services .hero-bg {
    background: #3a6186 url(/assets/images/bg-cs.jpg) right top /*120px*/ no-repeat;
    background-size: cover /*contain*/;
}

#private-wealth-services .hero-bg {
    background: #3a6186 url(/assets/images/bg-pw.jpg) center top /*120px*/ no-repeat;
    background-size: cover /*contain*/;
}

@media (max-width: 767px) {

	.hero-bg {
		background: #3a6186 url(/assets/images/bg-header.jpg) 80% top /*120px*/ no-repeat;
	}

	#fund-services .hero-bg {
		background: #3a6186 url(/assets/images/bg-fs.jpg) 30% top /*120px*/ no-repeat;
	}

	#corporate-services .hero-bg {
		background: #3a6186 url(/assets/images/bg-cs.jpg) 70% top /*120px*/ no-repeat;
	}
}

.alternate {
    position: relative;
    padding-top: 200px;
    width: 100%;
    overflow: hidden;
}

.alternate-bg-wrapper {
    transform: skewY(0deg);
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    overflow: hidden;
    z-index: -1;
}

.alternate-bg {
    position: absolute;
    top: 120px;
    bottom: -120px;
    right: 0px;
    left: 0px;
    transform: skewY(5deg);
    background-color: var(--color-beige);
    overflow: hidden;
    z-index: -1;
}

.divider {
	clear: both;
	margin: 100px 0;
	height: 100px;
    background: #3a6186 url(/assets/images/divider-left.svg) center center / cover no-repeat ;
}

.divider.alt {
    background: #3a6186 url(/assets/images/divider-right.svg) center center / cover no-repeat ;
}



/*
	###################################
	ALTERNATE BG COLOUR SECTIONS
	###################################
*/


.bg-slant-light {
	background: #3a6186 url('/bg-slant-light.svg');
}

.bg-slant-dark {
	background: #3a6186 url('/bg-slant-dark.svg') center bottom / cover no-repeat;
}

.bg-patchwork {
	background: #3a6186 url('/bg-patchwork.svg') center bottom / cover no-repeat;
}



/*
	###################################
	HOMEPAGE
	###################################
*/

#homepage header h1 {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 25px;
}

#homepage header p {
	display: block;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 300;
	color: var(--color-white);
}

#homepage header h1:after {
    display: block;
    content: '';
    background: var(--color-gold-light);
    width: 80%;
    height: 4px;
    margin-top: 25px;
    margin-left: auto;
}

#homepage header h1.line-above:after {
    display: none;
}

#homepage header h1.line-above:before {
    display: block;
    content: '';
    background: var(--color-gold-light);
    width: 80%;
    height: 4px;
    margin-bottom: 25px;
    margin-left: auto;
}

#homepage #intro h2 {
	font-size: 2.125rem;
	line-height: 2.75rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 50px;
}

#homepage #intro .small-title {
	font-size: .75rem;
}

#homepage #intro .list-inline-item {
	padding-top: 10px;
	padding-bottom: 10px;
}

#homepage #services {
	margin-top: 150px;
	padding-top: 200px;
	padding-bottom: 250px;
	background: #3a6186 url('/bg-home-services.svg') center top / cover no-repeat;
}

#homepage #services h2 {
	font-size: 1.125rem;
	margin-bottom: 50px;
}

#homepage #services h3 {
	font-size: 1.375rem;
	letter-spacing: .05rem;
	margin-top: 50px;
	margin-bottom: 20px;
}

#homepage #services p {
	margin-bottom: 30px;
}

#homepage #callout h5 {
	line-height: 1.125rem;
	font-weight: 400;
	text-transform: uppercase;
}

#homepage #callout .small {
	font-size: .75rem;
	line-height: 1rem;
}

@media (max-width: 992px) {
	#homepage #services {
		margin-top: 0px;
		padding-bottom: 100px;
	}
}

@media (max-width: 767px) {

	#homepage header h1 {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	#homepage header p {
		display: block;
		font-size: 1rem;
		line-height: 1.25rem;
	}

	#homepage #intro h2 {
		font-size: 2.25rem;
		line-height: 2.5rem;
		margin-bottom: 50px;
	}

	#homepage #services h2 {
		font-size: 0.875rem;
		margin-bottom: 50px;
	}

	#homepage #callout h5 {
		margin-bottom: 5px;
	}
}

/*
	###################################
	COMPANY / ABOUT US
	###################################
*/

.service-section {
	margin-top: 0;
	padding-top: 50px;
	padding-bottom: 50px;
	min-height: calc(100vh - 120px);
	display: flex;
	align-items: center;
	background: #3a6186 url('/bg-incorporate.svg') top left / cover no-repeat;
}

.service-section .intro {
	margin-bottom: 100px;
}

.service-section h2 {
	font-size: 2.625rem;
	line-height: 3.125rem;
	letter-spacing: 0;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin-bottom: 0px;
}

/* Benefits Section */
.benefits-section {
	padding: 80px 0;
	background: var(--color-beige);
}

.benefits-section h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.benefits-section h2 span {
	color: var(--color-primary);
}

.benefit-card {
	background: var(--color-white);
	padding: 30px;
	border-radius: var(--radius-md);
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
}

.benefit-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.benefit-card i {
	font-size: 2rem;
	color: var(--color-primary);
	margin-bottom: 15px;
}

.benefit-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

.benefit-card p {
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-bottom: 0;
}

.benefit-card h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

/* Tax Table */
.tax-table {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.tax-table thead {
	background: var(--color-secondary);
	color: var(--color-white);
}

.tax-table thead th {
	font-weight: 600;
	padding: 15px 20px;
	border: none;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.tax-table tbody td {
	padding: 12px 20px;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9rem;
}

.tax-table tbody tr:last-child td {
	border-bottom: none;
}

.tax-table tbody tr:hover {
	background: var(--color-background-light);
}

/* Residency Rule Cards */
.residency-rule-card {
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--color-primary);
}

.residency-rule-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

.residency-rule-card p {
	font-size: 0.9rem;
	color: var(--color-text-light);
}

/* Exemptions and Deductions Lists */
.exemptions-list,
.deductions-list,
.documents-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.exemptions-list li,
.deductions-list li,
.documents-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: var(--color-text-light);
}

.exemptions-list li::before,
.deductions-list li::before,
.documents-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

/* Process Section */
.process-section {
	padding: 80px 0;
}

.process-section h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.process-section h2 span {
	color: var(--color-primary);
}

.process-timeline {
	position: relative;
	padding-left: 60px;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--color-gold-light);
}

.process-step {
	position: relative;
	margin-bottom: 40px;
}

.process-step:last-child {
	margin-bottom: 0;
}

.step-number {
	position: absolute;
	left: -60px;
	width: 40px;
	height: 40px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
}

.step-content h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 8px;
}

.step-content p {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: var(--color-beige);
}

.faq-section h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.faq-section h2 span {
	color: var(--color-primary);
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.faq-question {
	width: 100%;
	padding: 20px 25px;
	background: none;
	border: none;
	text-align: left;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-secondary);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition-fast);
}

.faq-question:hover {
	background: var(--color-beige);
}

.faq-question:focus {
	outline: none;
	box-shadow: none;
}

.faq-question:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: -2px;
}

.faq-question i {
	color: var(--color-primary);
	font-size: 0.85rem;
}

.faq-answer {
	padding: 5px 25px 20px;
}

.faq-answer p {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin-bottom: 0;
	line-height: 1.6;
}

.faq-item.open .faq-question {
	background: var(--color-beige);
}

@media (max-width: 767px) {
	.benefits-section,
	.process-section,
	.faq-section {
		padding: 50px 0;
	}

	.benefit-card {
		padding: 20px;
	}

	.process-timeline {
		padding-left: 50px;
	}

	.step-number {
		left: -50px;
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}
}

#mission  {
	margin-top: 60px;
}

#mission h2.mission {
	margin-bottom: 140px;
}

#mission h2.mission span {
	display: block;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0;
	margin-top: 15px;
}

#mission h2.mission span strong {
	font-size: 2.625rem;
}

#pride {
	margin-top: 100px;
	padding-bottom: 180px;
}

#pride h2 {
	font-size: 1rem;
	color: var(--color-gold);
	margin-top: 100px;
	margin-bottom: 50px;
}

#pride h2 span {
	font-size: 1.25rem;
	letter-spacing: 1.5rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-left: 10px;
}

#pride h3 span {
	font-size: 1.25rem;
	font-weight: 700;
}

#our-symbolism {
	padding-top: 80px;
	padding-bottom: 80px;
	background: #3a6186 url('/bg-gold.svg') center top / cover no-repeat;
	color: var(--color-white);
}

#our-symbolism h2 {
	font-size: 2.625rem;
	line-height: 3.125rem;
	letter-spacing: 0;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--color-white);
	margin-top: 20px;
	margin-bottom: 10px;
}

@media (max-width: 767px) {

	#expertise {
		margin-top: 150px;
		padding-bottom: 150px;
	}

	#expertise h2,
	#our-symbolism h2 {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	#pride {
		margin-top: 0px;
	}

}


/*
	###################################
	TEAM LIST
	###################################
*/


#management-list h2 {
	color: var(--color-gold);
	margin-top: 10px;
	margin-bottom: 0px;
}

#management-list .biography {
	padding: 100px 0 80px 0;
}

#management-list h5 {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 0;
}

#management-list p.position {
	font-size: 0.75rem;
	color: var(--color-muted-dark);
	text-transform: uppercase;
	margin-bottom: 30px;
}

#management-list ul.fa-ul a {
	font-size: 0.75rem;
	line-height: 1.75rem;
	color: var(--color-muted-dark);
	text-transform: uppercase;
	margin-right: 50px;
}

#management-list ul.fa-ul a .fa {
	font-size: 1.25rem;
}

#management-list ul.fa-ul a:hover {
	color: var(--color-primary);
}



/*
	###################################
	THE SYMBOLISM
	###################################
*/


#the-symbolisms h2 {
	margin-top: 10px;
	margin-bottom: 100px;
}

#the-symbolisms h3 {
	font-size: 1.125rem;
	letter-spacing: .25rem;
	margin-top: 10px;
	margin-bottom: 50px;
}

#the-symbolisms ul.style-border {
	margin-left: -75px;
	/*margin-right: -75px;*/
	/*margin-bottom: 100px;*/
}

#the-symbolisms ul.style-border li {
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 100px;
	border-left: 1px solid var(--color-border-light);
	border-bottom: 0;
}

#the-symbolisms ul.style-border li:first-child {
	border-left: none;
}

@media (max-width: 992px) {

	#the-symbolisms ul.style-border li {
		border-left: none;
		border-bottom: 1px solid var(--color-border-light);
		padding-bottom: 50px;
		margin-bottom: 50px;
	}

	#the-symbolisms ul.style-border li:last-child {
		margin-bottom: 100px;
	}

}

#the-symbolisms ul.style-border li p {
	margin-bottom: 0;
	padding-bottom: 0;
}

#the-symbolisms h2.callout {
	font-size: 1.5rem;
	line-height: 2.25rem;
	font-weight: 400;
	letter-spacing: .5rem;
	margin-bottom: 150px;
}



/*
	###################################
	SERVICES PAGES
	###################################
*/

#corporate-services h1,
#corporate-services h2,
#corporate-services h3,
#corporate-services h4,
#corporate-services h5,
#corporate-services ul.style-dash li:before {color: var(--color-secondary);}

#private-wealth-services h1,
#private-wealth-services h2,
#private-wealth-services h3,
#private-wealth-services h4,
#private-wealth-services h5,
#private-wealth-services ul.style-dash li:before {color: var(--color-gold);}


#service-list {
	margin-top: 100px;
	margin-bottom: -150px;
	padding-top: 110px;
	padding-bottom: 250px;
	background: #3a6186 url('/bg-patchwork.svg') center top / cover no-repeat;
}

#service-list h2 {
	color: var(--color-gold);
	margin-bottom: 80px;
}

#service-list h4 {
	margin-bottom: 20px;
}

#service-list .small {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
	/*border-bottom: 1px solid #fff;*/
}

#service-list .small:after {
	display: block;
	position: absolute;
	width: 90%;
	bottom: 0;
	content: '';
	border-bottom: 1px solid #fff;
}

@media (max-width: 767px) {

	#service-list {
		padding-bottom: 100px;
	}

}

@media (max-width: 992px) {

	#service-list .small:after {
		width: 95%;
	}

}


/*
	###################################
	NEWS LIST
	###################################
*/


#news-insights h2,
#news-insights h3 {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--color-secondary);
	margin-top: 50px;
	margin-bottom: 20px;
}

#news-insights h3 {
	font-size: 1.25rem;
	margin-bottom: 20px;
}

section#news-list {
    margin-top: 0px;
}

.news-item {
    margin-bottom: 30px;
}

.news-item__w-thumb .news-item {
    margin-bottom: 80px;
}

p.news-date {
	font-size: 1rem;
	line-height: 1.125rem;
	color: var(--color-gold);
    text-align: right;
    margin-top: 5px;
    margin-bottom: 10px;
}

p.news-date span {
	display: block;
	font-size: .75rem;
	color: var(--color-text);
	margin-top: 5px;
}

#news-insights .news-item h3 {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 400;
	letter-spacing: 0;
    text-transform: none;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 15px;
}

.news-item__w-thumb p.news-date {
	display: block;
	font-size: .85rem;
	color: var(--color-gold);
    text-align: left;
}

a.news-item__w-thumb:hover {
	opacity: 0.8;
}

@media (max-width: 767px) {

	p.news-date {
	    font-size: .75rem;
	    text-align: left;
	}

	p.news-date span {
		display: inline-block;
		margin-left: 10px;
	}

}

section#news-list .nav-link {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    line-height: 1.125;
    letter-spacing: .25rem;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    margin: .5rem .875rem;
}

section#news-list .nav-pills .nav-link.active,
section#news-list .nav-pills .show > .nav-link {
    color: var(--color-white);
    background-color: var(--color-gold-medium);
    border-color: var(--color-gold-medium);
}





/*
	###################################
	CONTACT
	###################################
*/

section#contact-form {
	margin-top: 80px;
}

.contact-information p {
	margin-bottom: 40px;
}


.contact{
	max-width: 970px;
}

input,textarea,button{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.contact form .form{
	width:100%;
	height: auto;
	padding:15px 15px 12px;
	font-size:18px;
	margin-bottom:18px;
	color:var(--color-muted);
	letter-spacing: 0.5px;
}

.light-form{
	background:var(--color-background-alt);
	border:1px solid var(--color-border);
}

.dark-form{
	background-color:transparent;
	border:1px solid #2e2e2e;
}

.contact form .textarea{
	height: 201px;
	max-width: 100%;
	max-height: 201px;
}

.contact form button.contact-form-button{
	margin-bottom:0;
}

#subscribe form .subscribe-form{
	width:100%;
	height: auto;
	padding:15px 15px 12px;
	font-size:18px;
	margin-bottom:18px;
	color:var(--color-muted);
	letter-spacing: 0.5px;
}

/* Actives, Focuses and Rollovers */

.contact form .form:active,
.contact form .form:focus{
	outline: none;
}

.contact form button.contact-form-button:hover{
	color:white;
}

.contact form .light-form:hover{
	border-color:var(--color-border-dark);
}

/* Message For Mail */

.mail-message-area{
	width:100%;
	padding:0 15px;
}

.mail-message{
	width: 100%;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	margin:0 auto;
	border-radius: 0;
}

.not-visible-message{
	height:0px;
	opacity: 0;
}

.visible-message{
	height:auto;
	opacity: 1;
	margin:25px auto 0;
}

.contact span {
	display:none;
	font-size:12px;
	line-height:30px;
	color:red;
}

section#contact-map .container-fluid {
	padding: 0;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:50%;
    position:relative;
    height:0;
    margin-top: 100px;
    margin-bottom: -100px;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*
	###################################
	PRIVACY / TERMS
	###################################
*/

#privacy-policy main h5 {
	margin-top: 50px;
}

#privacy-policy main p {
	margin-bottom: 20px;
}

/*
	###################################
	SCROLL ANIMATIONS
	###################################
*/

.fade-in-up {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
	.fade-in-up {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/*
	###################################
	CRYPTO TAX PAGE
	###################################
*/

/* Comparison Table */
.comparison-table {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.comparison-table thead {
	background: var(--color-secondary);
	color: var(--color-white);
}

.comparison-table thead th {
	padding: 15px 20px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05rem;
	border: none;
}

.comparison-table tbody td {
	padding: 15px 20px;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-border);
}

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table tbody tr.highlight-row {
	background: rgba(226, 124, 106, 0.1);
}

/* Table responsive wrapper */
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
	.comparison-table {
		font-size: 0.8rem;
	}

	.comparison-table thead th,
	.comparison-table tbody td {
		padding: 10px 12px;
	}
}

/*
	###################################
	RESIDENCE BY INVESTMENT PAGE
	###################################
*/

/* Stat Cards */
.stat-card {
	background: var(--color-white);
	padding: 30px 20px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border-top: 4px solid var(--color-primary);
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.stat-number {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	margin-bottom: 0;
}

/* Investment Option Cards */
.investment-option-card {
	background: var(--color-white);
	padding: 30px;
	border-radius: var(--radius-md);
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	border-left: 4px solid var(--color-primary);
}

.investment-option-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.investment-option-card .option-header {
	margin-bottom: 20px;
}

.investment-option-card .option-header i {
	font-size: 2.5rem;
	color: var(--color-primary);
	margin-bottom: 15px;
	display: block;
}

.investment-option-card .option-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.investment-option-card .option-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	display: block;
}

.investment-option-card > p {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin-bottom: 20px;
}

.investment-option-card .option-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.investment-option-card .option-details li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	font-size: 0.85rem;
	color: var(--color-text-light);
}

.investment-option-card .option-details li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

/* Requirements Section */
.requirements-section {
	padding: 80px 0;
	background: var(--color-beige);
}

.requirements-section h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.requirement-card {
	background: var(--color-white);
	padding: 25px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.requirement-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 15px;
	text-transform: uppercase;
}

.requirement-card h4 i {
	color: var(--color-primary);
}

.requirement-card h5 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 5px;
}

.requirement-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.requirement-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: var(--color-text-light);
}

.requirement-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

/* Process Step Duration */
.step-duration {
	display: inline-block;
	background: var(--color-beige);
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/* Obligation Cards */
.obligation-card {
	background: var(--color-white);
	padding: 25px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.obligation-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 15px;
	text-transform: uppercase;
}

.obligation-card h4 i {
	color: var(--color-primary);
}

.obligation-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.obligation-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: var(--color-text-light);
}

.obligation-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

/* Alert Info */
.alert-info {
	background: rgba(226, 124, 106, 0.1);
	border: 1px solid var(--color-primary);
	border-radius: var(--radius-md);
	padding: 15px 20px;
	color: var(--color-text);
	font-size: 0.9rem;
}

.alert-info i {
	color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.stat-card {
		padding: 20px 15px;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.investment-option-card {
		padding: 20px;
	}

	.investment-option-card .option-amount {
		font-size: 1.25rem;
	}

	.requirement-card,
	.obligation-card {
		padding: 20px;
	}

	.requirements-section {
		padding: 50px 0;
	}
}

/*
	###################################
	HOMEPAGE NEW SECTIONS
	###################################
*/

/* Stats Section */
.stats-section {
	padding: 60px 0;
	background: var(--color-primary);
	position: relative;
	z-index: 0;
}

.stat-item {
	padding: 20px;
}

.stat-item .stat-value {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-item .stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

/* Why Cyprus Section */
.why-cyprus-section {
	padding: 100px 0;
	background: var(--color-white);
}

.why-cyprus-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

.why-cyprus-section .lead {
	color: var(--color-text-light);
	font-size: 1.1rem;
}

.why-cyprus-card {
	background: var(--color-beige);
	padding: 30px 25px;
	border-radius: var(--radius-md);
	height: 100%;
	text-align: center;
	transition: var(--transition-normal);
}

.why-cyprus-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.why-cyprus-card .icon-wrapper {
	width: 70px;
	height: 70px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.why-cyprus-card .icon-wrapper i {
	font-size: 1.75rem;
	color: var(--color-white);
}

.why-cyprus-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 10px;
	text-transform: uppercase;
}

.why-cyprus-card p {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin-bottom: 0;
	line-height: 1.6;
}

/* Services Grid Section */
.services-grid-section {
	padding: 100px 0;
	background: var(--color-beige);
}

.services-grid-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

.service-card-link {
	text-decoration: none;
	display: block;
	height: 100%;
}

.service-card {
	background: var(--color-white);
	padding: 35px 30px;
	border-radius: var(--radius-md);
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	border-bottom: 3px solid transparent;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-bottom-color: var(--color-primary);
}

.service-card .service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--color-primary), #d4766a);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-card .service-icon i {
	font-size: 1.5rem;
	color: var(--color-white);
}

.service-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.service-card p {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin-bottom: 20px;
	line-height: 1.6;
}

.service-card .learn-more {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.service-card .learn-more i {
	margin-left: 5px;
	transition: var(--transition-fast);
}

.service-card:hover .learn-more i {
	transform: translateX(5px);
}

/* Partners Section */
.partners-section {
	padding: 100px 0;
	background: var(--color-white);
}

.partners-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

.partners-section .lead {
	color: var(--color-text);
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.partners-section p {
	color: var(--color-text-light);
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.partner-item {
	background: var(--color-beige);
	padding: 25px 20px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 15px;
	transition: var(--transition-normal);
}

.partner-item:hover {
	background: var(--color-white);
	box-shadow: var(--shadow-md);
	transform: translateX(5px);
}

.partner-item i {
	font-size: 1.5rem;
	color: var(--color-primary);
	width: 40px;
	text-align: center;
}

.partner-item span {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-secondary);
}

/* Process Overview Section */
.process-overview-section {
	padding: 100px 0;
	background: var(--color-secondary);
}

.process-overview-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 20px;
}

.process-overview-section .small-title {
	color: var(--color-primary);
}

.process-step-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 30px 25px;
	padding-top: 50px;
	border-radius: var(--radius-md);
	height: 100%;
	text-align: center;
	transition: var(--transition-normal);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	margin-top: 25px;
}

.process-step-card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.process-step-card .step-number {
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-white);
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
}

.process-step-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.process-step-card p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0;
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--color-primary) 0%, #c9655a 100%);
}

.cta-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 20px;
}

.cta-section .lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .btn-primary {
	background: var(--color-white);
	color: var(--color-primary);
	border: none;
	padding: 15px 35px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.cta-buttons .btn-primary:hover {
	background: var(--color-secondary);
	color: var(--color-white);
}

.cta-buttons .btn-outline-light {
	border: 2px solid var(--color-white);
	color: var(--color-white);
	padding: 13px 35px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	background: transparent;
}

.cta-buttons .btn-outline-light:hover {
	background: var(--color-white);
	color: var(--color-primary);
}

/* Responsive adjustments for homepage sections */
@media (max-width: 991px) {
	.partners-grid {
		grid-template-columns: 1fr;
	}

	.why-cyprus-section,
	.services-grid-section,
	.partners-section,
	.process-overview-section,
	.cta-section {
		padding: 70px 0;
	}

	.why-cyprus-section h2,
	.services-grid-section h2,
	.process-overview-section h2,
	.cta-section h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.stat-item .stat-value {
		font-size: 2.25rem;
	}

	.stats-section {
		padding: 40px 0;
	}

	.why-cyprus-section,
	.services-grid-section,
	.partners-section,
	.process-overview-section,
	.cta-section {
		padding: 50px 0;
	}

	.why-cyprus-section h2,
	.services-grid-section h2,
	.partners-section h2,
	.process-overview-section h2,
	.cta-section h2 {
		font-size: 1.75rem;
	}

	.why-cyprus-card,
	.service-card,
	.process-step-card {
		padding: 25px 20px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}


/*
	###################################
	BLOG / ARTICLES SECTION
	###################################
*/

/* Blog Page Hero */
.blog-hero {
	padding: 60px 0 40px;
	background: var(--color-background-light);
	text-align: center;
}

.blog-hero h1 {
	margin-bottom: 20px;
}

.blog-hero .lead {
	font-size: 1.125rem;
	color: var(--color-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Category Filter */
.category-filter-section {
	padding: 30px 0;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.category-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.category-btn {
	padding: 10px 24px;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	background: var(--color-white);
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.category-btn:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.category-btn.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

/* Article Grid Section */
.article-grid-section {
	padding: 60px 0 80px;
	background: var(--color-white);
}

/* No Articles State */
.no-articles {
	padding: 80px 40px;
	background: var(--color-background-light);
	border-radius: var(--radius-lg);
	text-align: center;
}

.no-articles i {
	font-size: 3rem;
	color: var(--color-border);
	margin-bottom: 20px;
}

.no-articles h3 {
	color: var(--color-secondary);
	text-transform: none;
	font-size: 1.5rem;
	letter-spacing: 0;
	margin-bottom: 15px;
}

.no-articles p {
	color: var(--color-text-light);
	margin-bottom: 0;
}

/* Article Card */
.article-card-link {
	display: block;
	text-decoration: none;
	height: 100%;
}

.article-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 100%;
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-primary);
}

.article-card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.article-category {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-primary);
	background: rgba(226, 124, 106, 0.1);
	padding: 5px 12px;
	border-radius: 20px;
}

.article-date {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.article-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-secondary);
	line-height: 1.4;
	margin-bottom: 15px;
	text-transform: none;
	letter-spacing: 0;
	transition: color var(--transition-fast);
}

.article-card:hover .article-title {
	color: var(--color-primary);
}

.article-excerpt {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.article-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid var(--color-border);
	margin-top: auto;
}

.article-reading-time {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.article-reading-time i {
	margin-right: 5px;
}

.read-more {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	transition: all var(--transition-fast);
}

.read-more i {
	margin-left: 5px;
	transition: transform var(--transition-fast);
}

.article-card:hover .read-more i {
	transform: translateX(5px);
}

/* Featured Article Card */
.article-card.featured {
	flex-direction: row;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #2a3a54 100%);
	border: none;
}

.article-card.featured .article-card-content {
	padding: 50px;
}

.article-card.featured .article-category {
	background: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
}

.article-card.featured .article-date {
	color: rgba(255, 255, 255, 0.7);
}

.article-card.featured .article-title {
	font-size: 1.75rem;
	color: var(--color-white);
}

.article-card.featured:hover .article-title {
	color: var(--color-gold-light);
}

.article-card.featured .article-excerpt {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
}

.article-card.featured .article-footer {
	border-top-color: rgba(255, 255, 255, 0.2);
}

.article-card.featured .article-reading-time {
	color: rgba(255, 255, 255, 0.7);
}

.article-card.featured .read-more {
	color: var(--color-gold-light);
}

/* Article Detail Page */
.article-page {
	margin-top: 0;
}

.article-breadcrumb {
	padding: 20px 0;
	background: var(--color-background-light);
}

.article-breadcrumb .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	font-size: 0.875rem;
}

.article-breadcrumb .breadcrumb-item a {
	color: var(--color-text-light);
}

.article-breadcrumb .breadcrumb-item a:hover {
	color: var(--color-primary);
}

.article-breadcrumb .breadcrumb-item.active {
	color: var(--color-text);
}

.article-header {
	padding: 50px 0 40px;
	background: var(--color-background-light);
}

.article-category-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-primary);
	background: rgba(226, 124, 106, 0.1);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.article-header h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	text-transform: none;
	letter-spacing: -0.02em;
	margin-bottom: 25px;
}

.article-meta-header {
	display: flex;
	gap: 25px;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.article-meta-header i {
	margin-right: 8px;
}

/* Article Content */
.article-content-section {
	padding: 60px 0;
	background: var(--color-white);
}

.article-content {
	font-size: 1.1rem;
	line-height: 1.85;
	color: var(--color-text);
}

.article-content h1 {
	display: none; /* Hide H1 since we have header */
}

.article-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-secondary);
	text-transform: none;
	letter-spacing: 0;
	margin-top: 45px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-primary);
}

.article-content h3 {
	font-size: 1.25rem;
	color: var(--color-secondary);
	text-transform: none;
	letter-spacing: 0;
	margin-top: 35px;
	margin-bottom: 15px;
}

.article-content p {
	margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
	margin-bottom: 25px;
	padding-left: 25px;
}

.article-content li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.article-content strong {
	color: var(--color-secondary);
}

.article-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.article-content a:hover {
	color: var(--color-gold-dark);
}

.article-content blockquote {
	margin: 30px 0;
	padding: 25px 30px;
	background: var(--color-background-light);
	border-left: 4px solid var(--color-primary);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
	color: var(--color-text-light);
}

.article-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Article Footer */
.article-footer-section {
	padding: 40px 0 60px;
	background: var(--color-white);
	border-top: 1px solid var(--color-border);
}

.article-share {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.article-share span {
	font-weight: 500;
	color: var(--color-text);
}

.share-buttons {
	display: flex;
	gap: 10px;
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-white);
	transition: all var(--transition-fast);
}

.share-btn.twitter {
	background: #1da1f2;
}

.share-btn.linkedin {
	background: #0077b5;
}

.share-btn.email {
	background: var(--color-secondary);
}

.share-btn:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	color: var(--color-white);
}

.back-to-articles {
	padding-top: 20px;
}

.back-to-articles i {
	margin-right: 8px;
}

/* RTL Article Styles - mirror LTR layout */
.article-share.rtl {
	flex-direction: row;
	justify-content: flex-end;
}

.article-share.rtl .share-buttons {
	flex-direction: row;
}

/* Article Not Found */
.article-not-found {
	padding: 120px 0;
	text-align: center;
}

.article-not-found h1 {
	margin-bottom: 20px;
}

.article-not-found p {
	margin-bottom: 30px;
	color: var(--color-text-light);
}

/* Blog Page Responsive */
@media (max-width: 991px) {
	.article-card.featured {
		flex-direction: column;
	}

	.article-card.featured .article-card-content {
		padding: 30px;
	}

	.article-card.featured .article-title {
		font-size: 1.5rem;
	}

	.article-header h1 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.blog-hero {
		padding: 40px 0 30px;
	}

	.category-filter {
		gap: 8px;
	}

	.category-btn {
		padding: 8px 16px;
		font-size: 0.8rem;
	}

	.article-grid-section {
		padding: 40px 0 60px;
	}

	.article-card-content {
		padding: 20px;
	}

	.article-title {
		font-size: 1.1rem;
	}

	.article-header {
		padding: 30px 0;
	}

	.article-header h1 {
		font-size: 1.75rem;
	}

	.article-meta-header {
		flex-direction: column;
		gap: 10px;
	}

	.article-content-section {
		padding: 40px 0;
	}

	.article-content {
		font-size: 1rem;
	}

	.article-content h2 {
		font-size: 1.25rem;
	}

	.article-share {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}
