:root {
	--ct-primary: #0B3D66;
	--ct-secondary: #1E9C9C;
	--ct-accent: #F4A71D;
	--ct-text: #1F2937;
	--ct-text-light: #4B5563;
	--ct-bg: #ffffff;
	--ct-bg-alt: #F8FAFC;
	--ct-border: #E2E8F0;
	--ct-radius: 12px;
	--ct-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
	--ct-transition: all 0.25s ease-in-out;
}

/* ---------- GLOBAL TYPOGRAPHY & BASE ---------- */
body {
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--ct-text);
	line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.site-title, .site-title a,
.entry-title, .entry-title a {
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ct-primary);
}

a {
	color: var(--ct-secondary);
	transition: var(--ct-transition);
}

a:hover,
a:focus {
	color: var(--ct-primary);
}

/* ---------- BUTTONS ---------- */
.ast-button,
.button,
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	padding: 0.85rem 1.75rem;
	transition: var(--ct-transition);
}

/* Primary button */
.ast-button,
.button,
input[type="submit"],
.wp-block-button__link {
	background-color: var(--ct-secondary);
	border: 2px solid var(--ct-secondary);
	color: #fff;
}

.ast-button:hover,
.button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	background-color: var(--ct-primary);
	border-color: var(--ct-primary);
	color: #fff;
}

/* Outline button */
.ct-btn-outline,
.ct-btn-outline:hover,
.ct-btn-outline:focus {
	display: inline-block;
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 50px;
	padding: 0.85rem 1.75rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: var(--ct-transition);
}

.ct-btn-outline:hover,
.ct-btn-outline:focus {
	background: #fff;
	color: var(--ct-primary);
}

/* ---------- HEADER & NAVIGATION ---------- */
.site-header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header .custom-logo-link img,
.site-header .site-logo-img img {
	max-height: 55px;
	width: auto;
	object-fit: contain;
}

.main-header-menu.ast-nav-menu > li > a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ct-primary);
	padding: 1rem 1rem;
	border-radius: 4px;
}

.main-header-menu.ast-nav-menu > li > a:hover,
.main-header-menu.ast-nav-menu > li.current-menu-item > a {
	color: var(--ct-secondary);
	background: rgba(30, 156, 156, 0.06);
}

/* Mobile menu improvements */
.ast-mobile-menu-trigger {
	color: var(--ct-primary);
}

/* ---------- FOOTER ---------- */
.site-footer {
	background: var(--ct-primary);
	color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
	color: var(--ct-accent);
}

.site-footer .widget-title,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
	color: #fff;
}

.site-footer .ast-builder-grid-row,
.site-footer .site-footer-focus-item {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

/* ---------- MODERN HOMEPAGE OVERRIDES ---------- */
.ct-modern-home .site-content {
	padding-top: 0;
}

.ct-modern-home .entry-header {
	display: none;
}

.ct-modern-home .entry-content {
	margin: 0;
}

/* HERO */
.ct-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem;
	color: #fff;
	overflow: hidden;
}

.ct-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.ct-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(11, 61, 102, 0.88) 0%, rgba(11, 61, 102, 0.55) 60%, rgba(30, 156, 156, 0.35) 100%);
}

.ct-hero__content {
	position: relative;
	z-index: 1;
	max-width: 880px;
	margin: 0 auto;
}

.ct-hero__pretitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: var(--ct-accent);
}

.ct-hero h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.ct-hero__subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 300;
	margin-bottom: 1rem;
	opacity: 0.95;
}

.ct-hero__tagline {
	font-size: 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.ct-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.ct-hero__actions .ast-button,
.ct-hero__actions .ct-btn-outline {
	min-width: 180px;
}

/* UTILITY SECTIONS */
.ct-section {
	padding: 5rem 1.5rem;
}

.ct-section--alt {
	background: var(--ct-bg-alt);
}

.ct-container {
	max-width: 1200px;
	margin: 0 auto;
}

.ct-section-title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 0.75rem;
	color: var(--ct-primary);
}

.ct-section-lead {
	text-align: center;
	font-size: 1.1rem;
	color: var(--ct-text-light);
	max-width: 700px;
	margin: 0 auto 3rem;
}

/* INTRO / TRUST */
.ct-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.ct-intro__text h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 1rem;
}

.ct-intro__text p {
	font-size: 1.05rem;
	margin-bottom: 1.25rem;
}

.ct-intro__image {
	position: relative;
	border-radius: var(--ct-radius);
	overflow: hidden;
	box-shadow: var(--ct-shadow);
}

.ct-intro__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* SERVICES */
.ct-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.75rem;
}

.ct-service-card {
	background: #fff;
	border: 1px solid var(--ct-border);
	border-radius: var(--ct-radius);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--ct-shadow);
	transition: var(--ct-transition);
}

.ct-service-card:hover {
	transform: translateY(-6px);
	border-color: var(--ct-secondary);
}

.ct-service-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	background: rgba(30, 156, 156, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ct-service-card__icon svg {
	width: 32px;
	height: 32px;
	fill: var(--ct-secondary);
}

.ct-service-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.ct-service-card p {
	color: var(--ct-text-light);
	margin-bottom: 0;
}

/* GALLERY */
.ct-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.ct-gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--ct-radius);
	aspect-ratio: 3 / 4;
}

.ct-gallery__item:first-child,
.ct-gallery__item:last-child {
	aspect-ratio: 4 / 3;
	grid-column: span 2;
}

.ct-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ct-gallery__item:hover img {
	transform: scale(1.08);
}

/* PARTNERS */
.ct-partners {
	background: #fff;
}

.ct-partners__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.ct-partners__item {
	background: var(--ct-bg-alt);
	border: 1px solid var(--ct-border);
	border-radius: 50px;
	padding: 0.55rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ct-text-light);
}

/* CONTACT CTA */
.ct-contact-cta {
	position: relative;
	background: var(--ct-primary);
	color: #fff;
	text-align: center;
	padding: 5rem 1.5rem;
	overflow: hidden;
}

.ct-contact-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 156, 156, 0.25), rgba(11, 61, 102, 0.85));
	z-index: 0;
}

.ct-contact-cta__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.ct-contact-cta h2 {
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 1rem;
}

.ct-contact-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.ct-contact-cta__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.ct-contact-cta a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.ct-contact-cta__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--ct-accent);
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	transition: var(--ct-transition);
}

.ct-contact-cta__phone:hover {
	background: #fff;
	color: var(--ct-primary);
}

.ct-contact-cta__email {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 2px solid #fff;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.ct-contact-cta__email:hover {
	background: #fff;
	color: var(--ct-primary);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
	.ct-intro__grid {
		grid-template-columns: 1fr;
	}

	.ct-intro__image {
		order: -1;
		max-height: 320px;
	}

	.ct-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ct-gallery__item:first-child,
	.ct-gallery__item:last-child {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.ct-hero {
		min-height: 70vh;
		padding: 5rem 1rem;
	}

	.ct-section {
		padding: 3.5rem 1rem;
	}

	.ct-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ct-hero__actions .ast-button,
	.ct-hero__actions .ct-btn-outline {
		width: 100%;
	}

	.ct-gallery__grid {
		grid-template-columns: 1fr;
	}

	.ct-gallery__item,
	.ct-gallery__item:first-child,
	.ct-gallery__item:last-child {
		grid-column: span 1;
		aspect-ratio: 4 / 3;
	}
}
