/* ==========================================================================
   Climekare Theme Ã¢â‚¬â€ Front-end Styles (mockup-matched)
   ========================================================================== */

:root {
	--ck-black: #000000;
	--ck-white: #ffffff;
	--ck-lime: #86efac;
	--ck-blue: #3b82f6;
	--ck-grey: #9ca3af;
	--ck-muted: #6b7280;
	--ck-section-title: #374151;
	--ck-navy: #0a0a1b;
	--ck-light-grey: #e8eaed;
	--ck-radius: 24px;
	--ck-radius-sm: 16px;
	--ck-radius-pill: 999px;
	--ck-container: 1200px;
	--ck-gutter: 1.5rem;
	--ck-nav-inset: 1.5rem;
	--ck-header-top: 10px;
	--ck-header-radius: 22px;
	--ck-section-pad: 85px;
	--ck-green-brand: #86efac;
	--ck-blue-brand: #3b82f6;
	--ck-dark-brand: #1f2937;
	--ck-gradient-green: linear-gradient(135deg, #bbf7d0 0%, #86efac 50%, #a7f3d0 100%);
	--ck-heading-size: 40px;
	--ck-para-size: 20px;
	--ck-section-heading-size: 30px;
	--ck-section-para-size: 16px;

	/* New design variables from climekare-services.html */
	--navy: #133F81;
	--navy-deep: #0E2E60;
	--ink: #141A22;
	--gray: #5C6B7A;
	--gray-light: #8393A6;
	--line: #E7ECF3;
	--green: #3CAF49;
	--green-dark: #2C8F3B;
	--green-lime-1: #B7F28C;
	--green-lime-2: #8FE070;
	--sky-1: #EAF3FD;
	--sky-2: #BFDCF7;
	--sky-3: #8FC2F0;
	--footer-navy: #000020;
	--radius-lg: 22px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--maxw: 1200px;
	--font-head: 'Bai Jamjuree', sans-serif;
	--font-body: 'Gabarito', sans-serif;
	--font-alt: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 1025px) {
	:root {
		--ck-gutter: 120px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--ck-white);
	color: var(--ck-black);
	font-family: var(--font-body);
	font-size: var(--ck-para-size);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: var(--ck-heading-size);
	font-family: var(--font-head);
}

p {
	font-size: var(--ck-section-para-size);
	line-height: 1.5;
}

body.home,
body.home .wp-site-blocks {
	background: var(--ck-white);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Container Ã¢â‚¬â€ shared horizontal rhythm for all sections */
.ck-container {
	width: min(100% - calc(var(--ck-gutter) * 2), var(--ck-container));
	max-width: var(--ck-container);
	margin-inline: auto;
}

.ck-header-shell {
	width: min(100% - calc(var(--ck-gutter) * 2), var(--ck-container));
	max-width: var(--ck-container);
	margin-inline: auto;
	pointer-events: auto;
}

/* Unified vertical spacing for content sections */
.ck-intro,
.ck-solutions,
.ck-advisory,
.ck-partners,
.ck-impact {
	padding-top: var(--ck-section-pad);
	padding-bottom: var(--ck-section-pad);
}

.ck-newsletter {
	padding-block: var(--ck-section-pad);
}

/* Logo (partner bar) */
.climekare-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: -0.03em;
	white-space: nowrap;
	line-height: 1;
}

.climekare-logo__clime {
	color: #374151;
}

.climekare-logo__k {
	color: var(--ck-lime);
}

.climekare-logo__are {
	color: var(--ck-blue);
}

.ck-partners__bar .climekare-logo {
	width: 100%;
	font-size: 1.125rem;
	opacity: 0.55;
	filter: grayscale(100%);
}

/* Buttons */
.ck-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.85rem;
	border-radius: var(--ck-radius-pill);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.ck-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.ck-btn svg {
	transition: transform 0.25s ease;
}

.ck-btn:hover svg {
	transform: rotate(-45deg);
}

.ck-btn--primary {
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	color: #141a22;
	border-color: transparent;
	border: 0;
}

.ck-btn--primary:hover,
.ck-btn--header-cta:hover,
.ck-intro .ck-btn--primary:hover,
.ck-hero__actions .ck-btn--primary:hover,
.ck-header-glass .ck-btn--primary:hover {
	background: linear-gradient(135deg, #CEFF9A 0%, #5FCC6A 100%) !important;
	color: #141a22 !important;
	opacity: 1 !important;
}

.ck-btn--header-cta {
	padding: 0.7rem 1.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	color: #141a22;
	border-color: transparent;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ck-btn--dark {
	background: var(--ck-dark-brand);
	color: var(--ck-white);
	border-color: transparent;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
}

.ck-btn--dark:hover {
	background: #111827;
	opacity: 1;
}

.ck-btn--ghost {
	background: rgba(30, 30, 30, 0.45);
	color: var(--ck-white);
	border-color: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ck-btn--ghost:hover {
	background: rgba(40, 40, 40, 0.65);
	opacity: 1;
}

.ck-btn--sm {
	padding: 0.65rem 1.25rem;
	font-size: 0.8125rem;
}

/* ==========================================================================
   WordPress resets
   ========================================================================== */

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.wp-site-blocks {
	padding: 0 !important;
	margin: 0;
}

main.wp-block-group {
	padding: 0 !important;
	margin: 0 !important;
}

.ck-site-header.wp-block-group,
.ck-site-footer.wp-block-group {
	margin: 0;
	padding: 0;
}

.ck-site-footer,
footer.ck-site-footer,
.ck-site-footer.alignfull,
.ck-site-footer.wp-block-group {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

.wp-site-blocks>.wp-block-template-part:has(.ck-site-footer),
.wp-site-blocks>.wp-block-template-part:has(.ck-hero),
main.wp-block-group+.wp-block-template-part:not(:has(.ck-newsletter)) {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

.wp-site-blocks>.wp-block-template-part:has(.ck-newsletter) {
	margin-top: 60px !important;
}

.ck-site-header .wp-block-group,
.ck-site-footer .wp-block-group {
	margin: 0;
}

.ck-site-footer .wp-block-html {
	width: 100%;
}

/* ==========================================================================
   Logo (header)
   ========================================================================== */

.ck-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
	top: -5px;
}

.ck-logo__leaf {
	position: absolute;
	top: 0;
	left: 2.35rem;
	transform: translateX(-50%);
}

.ck-logo__text {
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
}

.ck-logo__clime,
.ck-logo__kare {
	color: var(--ck-white);
}

.ck-logo__image {
	max-height: 40px;
	width: auto;
	display: block;
}

.ck-site-footer__brand .ck-logo__image {
	max-height: 32px;
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   Wordmark (footer)
   ========================================================================== */

.ck-wordmark {
	font-weight: 600;
	font-size: 1.375rem;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--ck-white);
}

.ck-wordmark--footer {
	display: inline-block;
	margin-bottom: 1.25rem;
	font-size: 1.375rem;
	font-weight: 600;
}

.ck-wordmark__clime {
	color: var(--ck-white);
}

.ck-wordmark__k {
	color: var(--ck-lime);
}

.ck-wordmark__are {
	color: var(--ck-blue);
}

/* ==========================================================================
   Menus (header + footer)
   ========================================================================== */

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

.ck-menu--header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 33px;
}

.ck-menu--header a {
	display: inline-flex;
	align-items: center;
	color: var(--ck-black);
	font-family: 'Gabarito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.ck-menu--header a:hover {
	opacity: 0.65;
}

.ck-header-nav {
	margin-left: auto;
	margin-right: 1.75rem;
	padding-left: 20px;
	padding-right: 20px;
}

.ck-header-menu {
	display: contents;
}

.ck-header-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	margin-left: auto;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.ck-header-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ck-black);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ck-header-toggle.is-active .ck-header-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.ck-header-toggle.is-active .ck-header-toggle__bar:nth-child(2) {
	opacity: 0;
}

.ck-header-toggle.is-active .ck-header-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.ck-menu--footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
}

.ck-menu--footer a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.ck-menu--footer a:hover {
	color: var(--ck-lime);
}

/* ==========================================================================
   Header Ã¢â‚¬â€ glassmorphism bar
   ========================================================================== */

.ck-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: var(--ck-header-top) 0 0;
	background: transparent;
	pointer-events: none;
	transition: padding 0.3s ease, top 0.3s ease;
}

.admin-bar .ck-site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .ck-site-header {
		top: 46px;
	}
}

.ck-header-glass {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 20px;
	padding: 0px 24px;
	height: 66px;
	box-sizing: border-box;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	border: 0.5px solid #A3A3A3;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.14) 100%), rgba(255, 255, 255, 0.59);
	backdrop-filter: blur(24.600000381469727px);
	transition: margin-top 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.ck-header-glass .ck-logo__image {
	max-height: 32px;
}

.ck-header-glass .ck-btn--primary {
	width: 129px;
	height: 34px;
	border-radius: 12px;
	font-family: 'Gabarito', sans-serif;
	font-weight: 500;
	font-size: 16px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	border: 0;
}

/* Scrolled Header Styling */
.ck-site-header.is-scrolled {
	padding: 0;
}

.ck-site-header.is-scrolled .ck-header-glass {
	margin-top: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Hero / Banner
   ========================================================================== */

.ck-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 170px 0 100px;
	background-image: var(--ck-hero-bg);
	background-size: cover;
	background-position: center center;
	background-color: #1a2e1a;
}

.ck-hero.alignfull {
	margin-block-start: 0;
}

.ck-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 26, 34, 0.85) 0%, rgba(20, 26, 34, 0.45) 50%, rgba(20, 26, 34, 0.1) 100%);
	pointer-events: none;
	z-index: 1;
}

.ck-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.ck-hero__heading {
	margin: 0 0 1.25rem;
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: var(--ck-white);
}

.ck-hero__subheading {
	margin: 0 0 1.75rem;
	font-family: 'Gabarito', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: #e7ece9;
	max-width: 700px;
}

.ck-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.875rem;
}

/* ==========================================================================
   Intro Ã¢â‚¬â€ "Where assets meet accountability"
   ========================================================================== */

.ck-intro {
	background: var(--ck-white);
}

.ck-intro__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ck-intro__heading {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 64px;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.035em;
	color: var(--ck-section-title);
}

.ck-intro__content {
	margin: 0 0 1.75rem;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.75;
	color: var(--ck-grey);
	max-width: 100%;
}

.ck-intro__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
}

.ck-intro .ck-btn--primary {
	width: 128px;
	height: 44px;
	border-radius: 16px;
	font-family: 'Gabarito', sans-serif;
	font-weight: 500;
	font-size: 16px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.ck-intro__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: var(--ck-black);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.ck-intro__link:hover {
	opacity: 0.65;
}

/* Stats row */
.ck-intro__stats {
	display: flex;
	align-items: flex-start;
	gap: 55px;
	width: 100%;
	padding: 40px 0 0;
	border-top: 1px solid #e5e7eb;
}

.ck-intro__stat {
	text-align: left;
	padding: 0;
	flex: 1;
}

.ck-intro__stat-value {
	display: block;
	margin-bottom: 0.35rem;
	font-family: 'Roboto', sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	color: var(--ck-dark-brand);
	letter-spacing: -0.02em;
}

.ck-intro__stat-label {
	display: block;
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.5;
	color: #141a22;
	max-width: 100%;
	margin-inline: 0;
}

.ck-intro__stat-divider {
	width: 5px;
	height: 80px;
	background: #000000;
	flex-shrink: 0;
	margin-top: 10px;
}

/* ==========================================================================
   Solutions
   ========================================================================== */

.ck-solutions {
	background: var(--ck-white);
}

.ck-solutions__header {
	text-align: left;
	margin-bottom: 84px;
}

.ck-solutions__title {
	margin: 0 0 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: var(--ck-section-title);
	letter-spacing: -0.02em;
}

.ck-solutions__subtitle {
	margin: 0;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--ck-grey);
	max-width: 520px;
}

.ck-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, 375px);
	gap: 38px;
	justify-content: center;
}

.ck-solutions__card {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	width: 375px;
	height: 660px;
}

.ck-solutions__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Advisory Framework
   ========================================================================== */

.ck-advisory {
	background: var(--ck-white);
	color: var(--ck-black);
	padding: 4rem 0 3rem;
}

.ck-advisory__card {
	background: transparent;
	border-radius: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}

.ck-advisory__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
}

.ck-advisory__media {
	padding-right: 1rem;
}

.ck-advisory__media img {
	width: 100%;
	border-radius: 0;
	aspect-ratio: 1 / 0.95;
	object-fit: cover;
	height: 100%;
}

.ck-advisory__content {
	padding-left: 1rem;
}

.ck-advisory__head {
	margin-bottom: 84px;
}

.ck-advisory__title {
	margin: 0 0 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: var(--ck-section-title);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ck-advisory__subtitle {
	margin: 0;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--ck-grey);
}

.ck-advisory__step {
	padding: 1.5rem 0;
}

.ck-advisory__step:first-child {
	padding-top: 0;
}

.ck-advisory__step--bordered {
	border-top: 1px solid #e5e7eb;
}

.ck-advisory__step-header {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.ck-advisory__number {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-weight: 600;
	color: var(--ck-black);
	min-width: 2.5rem;
}

.ck-advisory__step-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-weight: 600;
	color: var(--ck-black);
	line-height: 1.3;
}

.ck-advisory__step-desc {
	margin: 0;
	padding-left: 3.25rem;
	font-family: 'Gabarito', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ck-grey);
}

/* ==========================================================================
   Partners
   ========================================================================== */

.ck-partners {
	background: var(--ck-white);
	padding: 4rem 0;
}

.ck-partners__header {
	text-align: left;
	margin-bottom: 84px;
}

.ck-partners__title {
	margin: 0 0 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: var(--ck-section-title);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ck-partners__subtitle {
	margin: 0;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--ck-grey);
	max-width: 500px;
}

.ck-partners__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	width: 100%;
	background: var(--ck-light-grey);
	border-radius: 0;
	padding: 3rem 2rem;
}

.ck-partners__logo {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
}

.ck-partners__logo img {
	max-height: 40px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
}

/* ==========================================================================
   Impact Ã¢â‚¬â€ mission statement
   ========================================================================== */

.ck-impact {
	background: var(--ck-white);
}

.ck-impact__wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	min-height: auto;
}

.ck-impact__side-label {
	flex-shrink: 0;
	display: block;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	margin: 0;
	padding: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d1d5db;
	white-space: nowrap;
}

.ck-impact__statement {
	margin: 0;
	flex: 1;
	min-width: 0;
	max-width: 900px;
	padding-left: 30px;
	text-align: left;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.035em;
	color: var(--ck-dark-brand);
}

.ck-impact__highlight {
	font-weight: 700;
}

/* ==========================================================================
   Newsletter CTA
   ========================================================================== */

.ck-newsletter {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(380px, 50vh, 520px);
	background-image: var(--ck-newsletter-bg);
	background-size: cover;
	background-position: center;
	background-color: var(--ck-navy);
}

.ck-newsletter__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	pointer-events: none;
}

.ck-newsletter__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.ck-newsletter__heading {
	margin: 0 0 1rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--ck-white);
}

.ck-newsletter__heading em {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-style: italic;
	font-weight: 800;
}

.ck-newsletter__subheading {
	margin: 0 0 2.75rem;
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.75);
	max-width: 760px;
	margin-inline: auto;
}

.ck-newsletter__form {
	margin-bottom: 1.25rem;
}

.ck-newsletter__field {
	display: flex;
	align-items: center;
	max-width: 1000px;
	margin-inline: auto;
	gap: 20px;
	background: transparent;
	border: none;
	padding: 0;
	backdrop-filter: none;
	border-radius: 0;
}

.ck-newsletter__field input {
	flex: 1;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.12);
	border-radius: 208px;
	height: 54px;
	padding: 0 2rem;
	color: var(--ck-white);
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	outline: none;
	min-width: 0;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
	box-sizing: border-box;
	transition: border-color 0.25s ease;
}

.ck-newsletter__field input:hover,
.ck-newsletter__field input:focus {
	border-color: #3b82f6;
}

.ck-newsletter__field input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.ck-newsletter__field .ck-btn {
	flex-shrink: 0;
	height: 54px;
	padding: 0 1.5rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	color: #141a22;
	border: 0;
	border-radius: 208px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: background 0.3s ease, opacity 0.3s ease;
}

.ck-newsletter__disclaimer {
	margin: 0;
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.01em;
}

.ck-newsletter__success {
	margin: 0 0 1.5rem;
	padding: 1rem 1.5rem;
	background: rgba(134, 239, 172, 0.12);
	border: 1px solid var(--ck-lime);
	border-radius: var(--ck-radius-sm);
	color: var(--ck-lime);
	font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.ck-site-footer {
	background: #000020;
	margin: 0 !important;
	margin-block-start: 0 !important;
	padding: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.875rem;
}

.ck-site-footer .ck-container {
	padding-top: 80px;
	font-family: 'Gabarito';
}

.ck-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(120px, 1fr));
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
	padding-bottom: 3.5rem;
}

.ck-site-footer__brand p {
	margin: 0;
	max-width: 280px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
}

.ck-site-footer__col h3 {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ck-white);
	letter-spacing: 0;
}

.ck-site-footer__bottom {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 1.35rem 0 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ck-site-footer__bottom p {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.38);
}

.ck-site-footer__social {
	display: flex;
	gap: 0.625rem;
}

.ck-site-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
}

.ck-site-footer__social a span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.75rem;
	color: var(--ck-white);
	transition: background 0.2s ease;
}

.ck-site-footer__social a:hover span {
	background: rgba(255, 255, 255, 0.15);
}

.ck-site-footer__social a svg {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.ck-header-toggle {
		display: flex;
	}

	.ck-header-menu {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		order: 3;
		padding-top: 0.5rem;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}

	.ck-header-menu.is-open {
		display: flex;
	}

	.ck-header-nav {
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.ck-menu--header {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
	}

	.ck-menu--header li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.ck-menu--header li:last-child {
		border-bottom: none;
	}

	.ck-menu--header a {
		width: 100%;
		padding: 0.875rem 0;
	}

	.ck-btn--header-cta {
		display: inline-flex;
		width: 100%;
		justify-content: center;
		margin-bottom: 0.25rem;
	}

	.ck-header-glass {
		border-radius: var(--ck-header-radius);
		height: auto;
		min-height: 66px;
	}

	.ck-intro__grid,
	.ck-advisory__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.ck-intro__stats {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ck-intro__stat-divider {
		display: none;
	}

	.ck-solutions__grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin-inline: auto;
	}

	.ck-partners__bar {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1.5rem;
		padding: 1.75rem;
	}

	.ck-partners__logo {
		flex: 0 0 auto;
	}

	.ck-site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--ck-nav-inset: 1rem;
	}

	.ck-site-header {
		padding: var(--ck-header-top) 0 0;
	}

	.ck-header-glass {
		padding: 0px 20px;
		border-radius: var(--ck-header-radius);
	}

	.ck-logo__text {
		font-size: 1.2rem;
	}

	.ck-hero__actions {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.ck-hero__actions .ck-btn {
		width: 100%;
		justify-content: center;
	}

	.ck-newsletter__field {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.ck-newsletter__field input {
		width: 100%;
		box-sizing: border-box;
	}

	.ck-newsletter__field .ck-btn {
		width: 100%;
		justify-content: center;
	}

	.ck-site-footer__grid {
		grid-template-columns: 1fr;
	}

	.ck-site-footer__bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

.ck-newsletter__heading em {
	font-style: italic;
	font-weight: 700;
}

.ck-newsletter .ck-btn--primary {
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	color: #141a22;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ck-newsletter .ck-btn--primary:hover {
	background: linear-gradient(135deg, #CEFF9A 0%, #5FCC6A 100%) !important;
	color: #141a22 !important;
	opacity: 1;
}

.ck-newsletter__field input {
	background: rgba(255, 255, 255, 0.08);
}

.ck-newsletter__field input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   About Us Page
   ========================================================================== */

:root {
	--ck-about-green: #3fae4a;
	--ck-about-green-dark: #2f8a39;
	--ck-about-navy: #0b1b2b;
	--ck-about-ink: #14202b;
	--ck-about-muted: #5b6670;
	--ck-about-card-bg: #f7f8f7;
}

#what-we-deliver,
#industries,
#expertise,
#contact {
	scroll-margin-top: 100px;
}

/* About hero */
.ck-about-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	padding: 7rem 0 5rem;
	background-image: var(--ck-about-hero-bg);
	background-size: cover;
	background-position: center;
	background-color: #0d1b2a;
	overflow: hidden;
}

.ck-about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(6, 12, 20, 0.92) 0%, rgba(8, 18, 30, 0.75) 38%, rgba(10, 24, 38, 0.35) 62%, rgba(20, 40, 55, 0.15) 100%);
	pointer-events: none;
	z-index: 0;
}

.ck-about-hero:not([style*="--ck-about-hero-bg"]) {
	background-image:
		linear-gradient(100deg, rgba(6, 12, 20, 0.92) 0%, rgba(8, 18, 30, 0.75) 38%, rgba(10, 24, 38, 0.35) 62%, rgba(20, 40, 55, 0.15) 100%),
		linear-gradient(180deg, #0d1b2a 0%, #1c3247 35%, #d98a4e 62%, #f2b25c 78%, #f6c877 100%);
}

.ck-about-hero__overlay {
	display: none;
}

.ck-about-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 560px;
	padding-top: 1rem;
}

.ck-about-hero__heading {
	margin: 0 0 1.125rem;
	color: var(--ck-white);
	font-size: var(--ck-heading-size);
	font-weight: 700;
	line-height: 1.15;
}

.ck-about-hero__subheading {
	margin: 0 0 1.75rem;
	color: #e7ece9;
	font-size: var(--ck-para-size);
	line-height: 1.5;
	max-width: 440px;
}

.ck-about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
}

.ck-about-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8125rem 1.5rem;
	border-radius: 26px;
	font-weight: 600;
	font-size: 0.90625rem;
	line-height: 1;
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, background 0.2s ease;
}

.ck-about-btn--primary {
	background: var(--ck-about-green);
	color: var(--ck-white);
}

.ck-about-btn--primary:hover {
	background: var(--ck-about-green-dark);
	opacity: 1;
}

.ck-about-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--ck-white);
	border-color: rgba(255, 255, 255, 0.4);
}

.ck-about-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	opacity: 1;
}

/* About sections shared */
.ck-about-deliver,
.ck-about-industries,
.ck-about-expertise {
	padding: 5rem 0;
}

.ck-about-section-title {
	margin: 0 0 0.625rem;
	font-size: var(--ck-heading-size);
	font-weight: 700;
	color: var(--ck-about-ink);
}

.ck-about-section-sub {
	margin: 0 0 2.75rem;
	color: var(--ck-about-muted);
	font-size: var(--ck-para-size);
	max-width: 640px;
	line-height: 1.5;
}

/* What We Deliver */
.ck-about-deliver__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.ck-about-deliver__card {
	background: var(--ck-about-card-bg);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	box-sizing: border-box;
	height: 420px;
}

.ck-about-deliver__card--wide {
	display: flex;
	flex-direction: row;
}

.ck-about-deliver__card:not(.ck-about-deliver__card--wide) {
	display: flex;
	flex-direction: column;
}

.ck-about-deliver__text {
	padding: 2.25rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1.2;
}

.ck-about-deliver__card--wide .ck-about-deliver__text {
	width: 55%;
	flex: none;
}

.ck-about-deliver__text h3 {
	margin: 0 0 0.75rem;
	font-size: var(--ck-section-heading-size);
	font-weight: 700;
	color: var(--ck-about-ink);
}

.ck-about-deliver__text p {
	margin: 0 0 1.125rem;
	flex: 1;
}

/* ==========================================================================
   Services Page
   ========================================================================== */

#services,
#advisory,
#carbon-credits,
#energy-management {
	scroll-margin-top: 100px;
}

/* Service Pillars */
.ck-pillars {
	background: var(--ck-white);
	padding: var(--ck-section-pad) 0;
}

.ck-pillars__header {
	text-align: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ck-pillars__title {
	margin: 0 0 0.75rem;
	font-size: 32px;
	font-weight: 700;
	color: var(--ck-section-title);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ck-pillars__subtitle {
	margin: 0;
	font-size: var(--ck-para-size);
	line-height: 1.65;
	color: var(--ck-grey);
	max-width: 640px;
	margin-inline: auto;
}

.ck-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ck-pillars__card {
	background: var(--ck-light-grey);
	border-radius: var(--ck-radius);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ck-pillars__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.ck-pillars__image {
	width: 100%;
}

/* ==========================================================================
   Methodology Page
   ========================================================================== */

:root {
	--methodology-navy: #0b1130;
	--methodology-green: #7ed957;
	--methodology-green-2: #5fcf7a;
	--methodology-text-dark: #101322;
	--methodology-text-muted: #5b6072;
	--methodology-border: #e2e4ea;
	--methodology-card-bg: #e8fbe4;
}

/* Methodology Hero */
.ck-methodology-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	background: linear-gradient(100deg, rgba(20, 20, 25, 0.75) 20%, rgba(20, 20, 25, 0.15) 60%),
		url('https://images.unsplash.com/photo-1560250097-0b93528c311a?q=80&w=1600') center/cover no-repeat;
	display: flex;
	align-items: center;
}

.ck-methodology-hero__inner {
	padding: 0 60px;
	max-width: 600px;
}

.ck-methodology-hero__heading {
	color: #fff;
	font-size: 38px;
	line-height: 1.2;
	margin: 0 0 14px;
	font-weight: 600;
}

.ck-methodology-hero__subheading {
	color: #e4e6ee;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 24px;
}

.ck-methodology-hero__actions {
	display: flex;
	gap: 14px;
}

.ck-methodology-btn--primary {
	background: linear-gradient(135deg, var(--methodology-green-2), var(--methodology-green));
	color: #08260f;
	padding: 11px 22px;
	border-radius: 24px;
	font-weight: 600;
	font-size: 13px;
	border: none;
	cursor: pointer;
}

.ck-methodology-btn--secondary {
	background: #e9e9ec;
	color: #161825;
	padding: 11px 18px;
	border-radius: 24px;
	font-weight: 600;
	font-size: 13px;
	border: none;
	cursor: pointer;
}

/* Methodology Intro */
.ck-methodology-intro {
	max-width: 1150px;
	margin: 0 auto;
	padding: 80px 24px 40px;
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}

.ck-methodology-intro__text {
	flex: 1;
	min-width: 280px;
}

.ck-methodology-intro__heading {
	font-size: 40px;
	margin: 0 0 18px;
	line-height: 1.25;
	font-family: 'Gabarito';
	font-weight: 500;
}

.ck-methodology-intro__text p {
	color: var(--methodology-text-muted);
	font-size: 18px;
	line-height: 1.7;
	margin: 0 0 4px;
	font-family: 'Gabarito';
	font-weight: 400;
}

.ck-methodology-intro__text b {
	color: var(--methodology-text-dark);
}

.ck-methodology-intro__cards {
	flex: 1.2;
	min-width: 320px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ck-methodology-card {
	background: var(--methodology-card-bg);
	border-radius: 16px;
	padding: 20px 16px;
	font-size: 13px;
	width: 175px;
	height: 250px;
	box-sizing: border-box;
}

.ck-methodology-card__icon {
	font-size: 22px;
	margin-bottom: 14px;
	display: block;
}

.ck-methodology-card h4 {
	font-size: 20px;
	margin: 0 0 8px;
	font-weight: 500;
	font-family: 'Gabarito';
}

.ck-methodology-card p {
	margin: 0;
	color: var(--methodology-text-muted);
	line-height: 1.5;
	font-size: 16px;
}

/* Methodology Section */
.ck-methodology-section {
	max-width: 1150px;
	margin: 0 auto;
	padding: 85px 24px 0;
	margin-bottom: 84px;
	text-align: center;
}

.ck-methodology-section__heading {
	margin: 0 0 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 48px;
	font-weight: 600;
}

.ck-methodology-section__subtitle {
	margin: 0;
	font-family: 'Gabarito', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: var(--methodology-text-muted);
}

/* Methodology Steps */
.ck-methodology-step {
	max-width: 1150px;
	margin: 0 auto 70px;
	padding: 0 24px;
	text-align: center;
}

.ck-methodology-step img {
	border-radius: 16px;
	max-width: 1205px;
	width: 100%;
	height: 322px;
	margin-inline: auto;
	display: block;
	object-fit: cover;
	margin-bottom: 26px;
}

.ck-methodology-step__heading {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-weight: 600;
	margin: 0 0 8px;
}

.ck-methodology-step__description {
	color: var(--methodology-text-muted);
	font-family: 'Gabarito', sans-serif;
	font-size: 20px;
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Methodology Outcomes */
.ck-methodology-outcomes {
	max-width: 1150px;
	margin: 0 auto;
	padding: 70px 24px 100px;
	text-align: center;
}

.ck-methodology-outcomes__heading {
	font-size: 32px;
	margin: 0 0 8px;
}

.ck-methodology-outcomes__subtitle {
	color: var(--methodology-text-muted);
	margin: 0 0 44px;
}

.ck-methodology-outcomes__grid {
	display: grid;
	grid-template-columns: repeat(3, 375px);
	gap: 20px;
	justify-content: center;
}

.ck-methodology-outcome-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	width: 375px;
	height: 375px;
	box-sizing: border-box;
}

.ck-methodology-outcome-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ck-methodology-outcome-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65));
	display: flex;
	align-items: flex-end;
	padding: 18px;
}

.ck-methodology-outcome-card h4 {
	color: #fff;
	font-size: 17px;
	text-align: left;
	margin: 0;
	line-height: 1.3;
}

/* Methodology CTA Banner */
.ck-methodology-cta {
	position: relative;
	padding: 90px 24px;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background: linear-gradient(120deg, rgba(5, 10, 30, 0.85), rgba(5, 10, 30, 0.55)),
		url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1600') center/cover no-repeat;
}

.ck-methodology-cta__heading {
	font-size: 36px;
	margin: 0 0 14px;
	font-weight: 600;
}

.ck-methodology-cta__heading em {
	font-style: italic;
	font-weight: 700;
}

.ck-methodology-cta__subtitle {
	color: #cfd3e0;
	margin: 0 0 34px;
	font-size: 15px;
}

.ck-methodology-cta__form {
	display: flex;
	justify-content: center;
	gap: 14px;
	max-width: 560px;
	margin: 0 auto;
}

.ck-methodology-cta__form input {
	flex: 1;
	padding: 15px 22px;
	border-radius: 24px;
	border: none;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 15px;
}

.ck-methodology-cta__form input::placeholder {
	color: #dfe1ea;
}

.ck-methodology-cta__form button {
	background: linear-gradient(135deg, var(--methodology-green-2), var(--methodology-green));
	color: #08260f;
	font-weight: 700;
	padding: 15px 26px;
	border-radius: 24px;
	border: none;
	white-space: nowrap;
	cursor: pointer;
}

.ck-methodology-cta__note {
	margin-top: 22px;
	font-size: 13px;
	font-style: italic;
	color: #b9bdcc;
}

/* Methodology Responsive */
@media (max-width: 900px) {
	.ck-methodology-intro {
		flex-direction: column;
	}

	.ck-methodology-intro__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.ck-methodology-outcomes__grid {
		grid-template-columns: 1fr;
	}

	.ck-methodology-cta__form {
		flex-direction: column;
	}
}

.ck-pillars__image {
	margin-bottom: 1.5rem;
	aspect-ratio: 4 / 3;
	border-radius: var(--ck-radius-sm);
	overflow: hidden;
	background: #e5e7eb;
}

.ck-pillars__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ck-pillars__content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ck-pillars__card-title {
	margin: 0 0 0.75rem;
	font-size: 22px;
	font-weight: 700;
	color: var(--ck-section-title);
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.ck-pillars__card-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ck-grey);
}

/* Service Category */
.ck-service-category {
	background: var(--ck-white);
	padding: var(--ck-section-pad) 0;
}

.ck-service-category__header {
	text-align: left;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ck-service-category__title {
	margin: 0 0 0.75rem;
	font-size: 32px;
	font-weight: 700;
	color: var(--ck-section-title);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ck-service-category__subtitle {
	margin: 0;
	font-size: var(--ck-para-size);
	line-height: 1.65;
	color: var(--ck-grey);
	max-width: 640px;
}

.ck-service-category__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.ck-service-category__card {
	background: var(--ck-white);
	border: 1px solid #e5e7eb;
	border-radius: var(--ck-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ck-service-category__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--ck-lime);
}

.ck-service-category__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e5e7eb;
}

.ck-service-category__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ck-service-category__card:hover .ck-service-category__image img {
	transform: scale(1.05);
}

.ck-service-category__content {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ck-service-category__card-title {
	margin: 0 0 0.75rem;
	font-size: 22px;
	font-weight: 700;
	color: var(--ck-section-title);
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.ck-service-category__card-desc {
	margin: 0 0 1.25rem;
	flex: 1;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ck-grey);
}

.ck-service-category__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ck-blue);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.ck-service-category__link:hover {
	opacity: 0.75;
}

/* Service Hero - Similar to About Hero */
.ck-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 170px 0 100px;
	background-image: var(--ck-hero-bg);
	background-size: cover;
	background-position: center;
	background-color: #0d1b2a;
	overflow: hidden;
}

.ck-hero:not([style*="--ck-hero-bg"]) {
	background-image:
		linear-gradient(100deg, rgba(6, 12, 20, 0.92) 0%, rgba(8, 18, 30, 0.75) 38%, rgba(10, 24, 38, 0.35) 62%, rgba(20, 40, 55, 0.15) 100%),
		linear-gradient(180deg, #0d1b2a 0%, #1c3247 35%, #d98a4e 62%, #f2b25c 78%, #f6c877 100%);
}

.ck-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding-top: 1rem;
}

.ck-hero__heading {
	margin: 0 0 1.125rem;
	color: var(--ck-white);
	line-height: 1.08;
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 64px;
	font-weight: 500;
}

.ck-hero__subheading {
	margin: 0 0 1.75rem;
	color: #e7ece9;
	line-height: 1.6;
	font-family: 'Gabarito', sans-serif;
	font-size: 18px;
	font-weight: 400;
}

.ck-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.ck-hero__actions .ck-btn--primary {
	width: 184px;
	height: 41px;
	border-radius: 16px;
	font-family: 'Gabarito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%);
	border: 0;
}

.ck-hero__actions .ck-btn--ghost {
	width: 123px;
	height: 41px;
	border-radius: 16px;
	font-family: 'Gabarito', sans-serif;
	font-size: 16px;
	font-weight: 400;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	backdrop-filter: blur(4px);
}

/* Service Pillars - Updated to match climekare-services.html design */
.ck-pillars {
	background: var(--ck-white);
	padding: 50px 0;
}

.ck-pillars__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

.ck-pillars__title {
	margin: 0 0 0.75rem;
	font-size: 40px;
	color: var(--ink);
	font-family: 'Gabarito';
}

.ck-pillars__subtitle {
	margin-top: 10px;
	color: var(--gray);
	font-size: 20px;
}

.ck-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ck-pillars__card {
	background: transparent;
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: 0;
}

.ck-pillars__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 210px;
	margin-bottom: 22px;
}

.ck-pillars__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ck-pillars__card-title {
	font-size: 26px;
	margin-bottom: 8px;
	color: var(--ink);
	padding: 0 4px 4px;
	font-family: 'Gabarito';
}

.ck-pillars__card-desc {
	color: var(--gray);
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	padding: 0 4px 4px;
}

/* Service Category - Updated to match climekare-services.html design */
.ck-service-category {
	background: var(--ck-white);
	padding: 50px 0;
}

.ck-service-category__header {
	text-align: left;
	margin: 0 0 44px;
	max-width: none;
}

.ck-service-category__title {
	margin: 0 0 8px;
	color: var(--ink);
}

.ck-service-category__subtitle {
	margin-top: 8px;
	color: var(--gray);
}

.ck-service-category__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
	margin-top: 44px;
}

.ck-service-category__card {
	background: var(--ck-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ck-service-category__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.ck-service-category__image {
	height: 100%;
}

.ck-service-category__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ck-service-category__card:hover .ck-service-category__image img {
	transform: scale(1.05);
}

.ck-service-category__content {
	padding: 26px 28px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ck-service-category__card-title {
	margin: 0 0 8px;
	font-size: 26px;
	color: var(--ink);
	font-family: 'Gabarito';
}

.ck-service-category__card-desc {
	margin: 0 0 16px;
	flex: 1;
	font-size: 16px;
	line-height: 1.55;
	color: var(--gray);
	max-width: 420px;
}

.ck-service-category__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 18px;
	color: var(--ink);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.ck-service-category__link:hover {
	opacity: 0.75;
}

/* Energy Grid - Custom layout for Energy Management section */
.ck-energy-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.6fr;
	gap: 26px;
	margin-top: 44px;
	align-items: stretch;
}

.ck-energy-mini-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ck-energy-mini-card .ck-service-category__content {
	padding: 26px 24px 20px;
	flex: 1;
}

.ck-energy-mini-card .ck-service-category__card-title {
	font-size: 26px;
	margin-bottom: 8px;
}

.ck-energy-mini-card .ck-service-category__card-desc {
	font-size: 16px;
	line-height: 1.5;
}

.ck-energy-mini-card .ck-service-category__image {
	height: 200px;
}

.ck-energy-wide-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.ck-energy-wide-card .ck-service-category__content {
	padding: 30px 30px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ck-energy-wide-card .ck-service-category__card-title {
	font-size: 26px;
	margin-bottom: 10px;
}

.ck-energy-wide-card .ck-service-category__card-desc {
	font-size: 16px;
	line-height: 1.55;
}

/* Service CTA - Updated to match climekare-services.html design */
.ck-cta {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	margin: 0 24px;
	background: radial-gradient(120% 160% at 15% 0%, #16241a 0%, #0a1109 45%, #05060a 100%);
	padding: 50px 60px;
	text-align: center;
	color: #fff;
}

.ck-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 700px 260px at 50% 130%, rgba(120, 255, 150, 0.10), transparent 70%);
	pointer-events: none;
}

.ck-cta__overlay {
	display: none;
}

.ck-cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.ck-cta__heading {
	margin: 0 0 1rem;
	font-size: 42px;
	font-weight: 600;
	position: relative;
	z-index: 1;
	color: #fff;
}

.ck-cta__heading em {
	font-style: italic;
	font-weight: 700;
	color: #EAFBD8;
}

.ck-cta__subheading {
	margin-top: 14px;
	color: #C8D2C6;
	font-size: 15.5px;
	position: relative;
	z-index: 1;
}

.ck-cta__actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 34px;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}

.ck-cta__input {
	width: 340px;
	max-width: 60vw;
	padding: 15px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 14.5px;
	font-family: var(--font-body);
}

.ck-cta__input::placeholder {
	color: #9AA79A;
}

.ck-cta__note {
	margin-top: 22px;
	color: #8A968A;
	font-size: 12.5px;
	position: relative;
	z-index: 1;
	letter-spacing: 0.01em;
}

/* Responsive for Services Page */
@media (max-width: 1024px) {

	.ck-pillars__grid,
	.ck-service-category__grid,
	.ck-energy-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}

	.ck-energy-wide-card {
		grid-template-columns: 1fr;
	}

	.ck-cta {
		margin: 0 12px;
		padding: 60px 24px;
	}

	.ck-cta__heading {
		font-size: 30px;
	}

	.ck-hero__heading {
		font-size: 36px;
	}
}

@media (max-width: 640px) {
	.ck-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.ck-cta__actions .ck-btn {
		width: 100%;
		justify-content: center;
	}
}

.ck-about-explore {
	font-size: 0.84375rem;
	font-weight: 700;
	color: var(--ck-about-ink);
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.ck-about-explore:hover {
	color: var(--ck-about-green);
}

.ck-about-deliver__img {
	background-size: cover;
	background-position: center;
	flex: none;
}

.ck-about-deliver__card--wide .ck-about-deliver__img {
	width: 45%;
	height: 100%;
}

.ck-about-deliver__card:not(.ck-about-deliver__card--wide) .ck-about-deliver__img {
	width: 100%;
	height: 140px;
}

.ck-about-deliver__img--1 {
	background: linear-gradient(160deg, #cfe0ea, #8fa9b8 40%, #4c6478);
}

.ck-about-deliver__img--2 {
	background: linear-gradient(150deg, #e7ded2, #b8aa93);
}

.ck-about-deliver__img--3 {
	background:
		repeating-linear-gradient(0deg, #2b3f52 0 10px, #22344a 10px 20px),
		linear-gradient(180deg, #3a5068, #1c2c3d);
}

.ck-about-deliver__img[style*="background-image"] {
	background-color: transparent;
}

/* Industries */
.ck-about-industries__grid {
	display: grid;
	grid-template-columns: repeat(4, 270px);
	gap: 40px;
	align-items: stretch;
	justify-content: center;
}

.ck-about-industries__card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	width: 270px;
	height: 270px;
	min-height: auto;
	padding: 1.375rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: var(--ck-white);
	background-image: var(--ck-about-ind-bg);
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
}

.ck-about-industries__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 16, 22, 0.55);
	z-index: 0;
}

.ck-about-industries__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ck-about-industries__title-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.ck-about-industries__card--1 {
	background-color: #2d2318;
	background-image: var(--ck-about-ind-bg), linear-gradient(160deg, #5a4632, #2d2318);
}

.ck-about-industries__card--2 {
	background-color: #1c242c;
	background-image: var(--ck-about-ind-bg), linear-gradient(160deg, #3d4a55, #1c242c);
}

.ck-about-industries__card--3 {
	background-color: #152230;
	background-image: var(--ck-about-ind-bg), linear-gradient(160deg, #33506a, #152230);
}

.ck-about-industries__card--4 {
	background-color: #241d29;
	background-image: var(--ck-about-ind-bg), linear-gradient(160deg, #463a4d, #241d29);
}

.ck-about-industries__icon {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 30px;
	height: 30px;
	margin: 0;
	opacity: 0.95;
	color: var(--ck-white);
	flex-shrink: 0;
}

.ck-about-industries__icon svg {
	display: block;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.ck-about-industries__icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	object-position: left center;
	display: block;
	flex-shrink: 0;
}

.ck-about-industries__card h4 {
	margin: 0;
	font-size: var(--ck-section-heading-size);
	font-weight: 600;
	line-height: 1.25;
}

.ck-about-industries__card p {
	margin: 0;
	font-size: var(--ck-section-para-size);
	color: #e7e9ea;
	line-height: 1.35;
}

/* Expertise */
.ck-about-expertise__grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3.125rem;
	align-items: center;
}

.ck-about-expertise__region {
	margin-bottom: 2.125rem;
}

.ck-about-expertise__region:last-child {
	margin-bottom: 0;
}

.ck-about-expertise__region h3 {
	margin: 0 0 0.5rem;
	font-size: var(--ck-heading-size);
	font-weight: 700;
	color: var(--ck-about-ink);
}

.ck-about-expertise__region p {
	margin: 0;
	color: var(--ck-about-muted);
	font-size: var(--ck-para-size);
	line-height: 1.5;
}

.ck-about-expertise__media {
	min-height: 280px;
	border-radius: 6px;
	background-color: #1c3247;
	background-image: var(--ck-about-expertise-img), linear-gradient(180deg, #0c1c2c 0%, #244258 35%, #dd9a56 60%, #f3c47c 78%, #f8dca0 100%);
	background-size: cover;
	background-position: center;
}

@media (max-width: 900px) {
	.ck-about-deliver__grid {
		grid-template-columns: 1fr;
	}

	.ck-about-deliver__card {
		height: auto;
		flex-direction: column;
	}

	.ck-about-deliver__card--wide {
		flex-direction: column;
	}

	.ck-about-deliver__card--wide .ck-about-deliver__text {
		width: 100%;
		max-width: 100%;
	}

	.ck-about-deliver__card--wide .ck-about-deliver__img {
		width: 100%;
		height: 200px;
	}

	.ck-about-deliver__card:not(.ck-about-deliver__card--wide) .ck-about-deliver__img {
		width: 100%;
		height: 180px;
	}

	.ck-about-industries__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ck-about-expertise__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ck-about-hero__actions {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.ck-about-hero__actions .ck-about-btn {
		width: 100%;
		justify-content: center;
	}

	.ck-about-industries__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.ck-faq {
	padding: 6rem 0;
	background: var(--ck-white, #ffffff);
}

.ck-faq__header {
	text-align: center;
	margin-bottom: 4rem;
	padding: 0 1.5rem;
}

.ck-faq__title {
	font-size: 40px;
	font-weight: 600;
	color: var(--ck-black, #141a22);
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	font-family: 'Gabarito';
}

.ck-faq__subtitle {
	font-size: 20px;
	color: #6b7280;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.6;
	font-family: 'Gabarito';
}

.ck-faq__accordion-wrapper {
	margin: 0 auto 5rem;
	padding: 0 1.5rem;
	border-top: 1.5px solid #d1d5db;
}

.ck-faq__item {
	border-bottom: 1.5px solid #e5e7eb;
}

.ck-faq__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.875rem 0;
	background: transparent;
	border: none;
	text-align: left;
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	font-weight: 700;
	color: var(--ck-black, #141a22);
	cursor: pointer;
	transition: color 0.2s ease;
	gap: 1.5rem;
}

.ck-faq__toggle:hover {
	color: var(--ck-about-green, #3fae4a);
}

.ck-faq__question {
	flex: 1;
	font-family: 'Gabarito';
	font-size: 30px;
	font-weight: 500;
}

.ck-faq__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	color: #9ca3af;
}

.ck-faq__toggle[aria-expanded="true"] .ck-faq__icon {
	transform: rotate(90deg);
	color: var(--ck-about-green, #3fae4a);
}

.ck-faq__content {
	overflow: hidden;
}

.ck-faq__content[hidden] {
	display: none;
}

.ck-faq__answer {
	padding: 0 0 1.875rem;
	color: #4b5563;
	font-size: 1.0625rem;
	line-height: 1.65;
	font-family: 'Gabarito';
}

.ck-faq__cta {
	text-align: center;
	padding: 0 1.5rem;
}

.ck-faq__cta-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--ck-black, #141a22);
	margin: 0 0 0.5rem;
	font-family: 'Gabarito';
}

.ck-faq__cta-subtitle {
	font-size: 20px;
	color: #6b7280;
	margin: 0 0 2rem;
	font-family: 'Gabarito';
}

.ck-faq__cta .ck-btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	border-radius: 26px;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.ck-contact-form-section {
	padding: 6rem 0 8rem;
	background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
	border-radius: 0 0 120px 120px;
	position: relative;
	z-index: 2;
}

.ck-contact-form__header {
	text-align: center;
	margin-bottom: 3.5rem;
	padding: 0 1.5rem;
}

.ck-contact-form__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 500;
	color: var(--ck-black, #141a22);
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	font-family: 'Gabarito';
}

.ck-contact-form__subtitle {
	font-size: 20px;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	font-family: 'Gabarito';
}

.ck-contact-form__card {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 1.5rem;
	background: transparent;
	box-shadow: none;
}

/* Consultation Form Custom Styles */
.consultation-form {
	width: 100%;
}

.consultation-form .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 12px;
}

.consultation-form .form-col {
	width: 50%;
}

.consultation-form .form-col.full-width {
	width: 100%;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
	width: 100%;
	box-sizing: border-box;
	border: 2px solid #d1d5db;
	border-radius: 12px;
	background: #fff;
	padding: 0 24px;
	font-size: 18px;
	color: #555;
	outline: none;
	transition: border-color 0.2s ease;
	font-family: inherit;
	font-weight: 400;
}

.consultation-form input {
	height: 60px;
}

.consultation-form select {
	height: 60px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 1.2rem;
	padding-right: 3.5rem;
}

.consultation-form textarea {
	height: 130px;
	padding-top: 18px;
	resize: vertical;
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {
	border-color: #3db54a;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
	color: #777;
	opacity: 1;
}

.consultation-form .form-submit {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.consultation-form input[type="submit"] {
	width: auto;
	min-width: 280px;
	height: 60px;
	padding: 0 40px;
	border: 0;
	border-radius: 30px;
	background: #BFECFF;
	color: #141a22;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.consultation-form input[type="submit"]:hover {
	background: #a3defb;
	color: #141a22;
	opacity: 1;
}

.consultation-form .ck-contact-form__phone-wrap {
	display: flex;
	border: 2px solid #d1d5db;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	height: 60px;
	transition: border-color 0.2s ease;
}

.consultation-form .ck-contact-form__phone-wrap:focus-within {
	border-color: #3db54a;
}

.consultation-form .ck-contact-form__phone-wrap input {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	height: 100%;
}

.consultation-form .ck-contact-form__country-select {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0 1.2rem;
	border-right: 2px solid #e5e7eb;
	background: #f9fafb;
	color: #777;
	font-size: 16px;
	user-select: none;
}

.consultation-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.consultation-form .ck-contact-form__phone-wrap .wpcf7-form-control-wrap {
	flex: 1;
	display: flex;
}

.wpcf7-not-valid-tip {
	font-size: 0.8125rem;
	color: #ef4444;
	margin-top: 0.25rem;
	display: block;
	text-align: left;
}

@media (max-width: 767px) {
	.consultation-form .form-row {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}

	.consultation-form .form-col {
		width: 100%;
	}

	.consultation-form input,
	.consultation-form select {
		height: 64px;
		font-size: 18px;
		padding: 0 20px;
	}

	.consultation-form textarea {
		height: 160px;
		font-size: 18px;
		padding: 20px;
	}

	.consultation-form select {
		background-position: right 20px center;
		background-size: 1.1rem;
		padding-right: 3rem;
	}

	.consultation-form .form-submit {
		margin-top: 40px;
	}

	.consultation-form input[type="submit"] {
		width: 100%;
		min-width: 0;
		height: 64px;
		font-size: 20px;
	}

	.consultation-form .ck-contact-form__phone-wrap {
		height: 64px;
		border-radius: 16px;
	}

	.consultation-form .ck-contact-form__country-select {
		font-size: 18px;
		padding: 0 1rem;
	}
}

/* ==========================================================================
   Offices Section
   ========================================================================== */

.ck-offices {
	padding: 6rem 0;
	background: var(--ck-white, #ffffff);
}

.ck-offices__header {
	margin-bottom: 4rem;
	padding: 0 1.5rem;
}

.ck-offices__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 500;
	color: var(--ck-black, #141a22);
	margin: 0 0 0.5rem;
	font-family: 'Gabarito';
	letter-spacing: -0.02em;
}

.ck-offices__subtitle {
	font-size: 20px;
	color: #6b7280;
}

.ck-offices__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 4rem;
	padding: 0 1.5rem;
	align-items: center;
}

.ck-offices__content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ck-offices__item {
	margin-bottom: 0rem;
}

.ck-offices__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ck-black, #141a22);
	margin: 0 0 0.5rem;
}

.ck-offices__address {
	font-size: 20px;
	color: #4b5563;
	line-height: 1.5;
	font-family: 'Gabarito';
}

.ck-offices__map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
	background: #f8fafc;
}

.ck-offices__map-img {
	display: block;
	width: 100%;
	height: auto;
}

.ck-offices__map-fallback {
	display: flex;
	flex-direction: column;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
}

.ck-offices__map-fallback svg {
	width: 100%;
	height: auto;
	display: block;
}

.ck-offices__map-label {
	text-align: center;
	padding: 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #6b7280;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
}

/* =media queries */
@media (max-width: 768px) {
	.ck-contact-form__card {
		padding: 2rem;
	}

	.ck-contact-form__row--2 {
		grid-template-columns: 1fr;
	}

	.ck-offices__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

.ck-offices__map-iframe-wrap {
	position: relative;
	width: 100%;
	height: 420px;
	border-radius: 20px;
	overflow: hidden;
}

.ck-offices__map-iframe-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.consultation-form p {
	margin: 5px 0px;
}

.ck-logo p {
	margin: 0 !important;
}

/* Hero Slider Styles */
.ck-hero--has-slider {
	position: relative;
	overflow: hidden;
	padding: 0 !important;
}

.ck-hero-slides {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100svh;
}

.ck-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 170px 0 100px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	z-index: 1;
	background-image: var(--ck-hero-bg);
}

.ck-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.ck-hero-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.ck-hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.ck-hero-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

.ck-hero-dot.is-active {
	background: #86efac;
	transform: scale(1.2);
}

/* Shortcode Form Styles */
.ck-newsletter__shortcode-form form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: 1000px;
	margin-inline: auto;
}

.ck-newsletter__shortcode-form input[type="text"],
.ck-newsletter__shortcode-form input[type="email"],
.ck-newsletter__shortcode-form input[type="tel"] {
	flex: 1;
	background: rgba(50, 50, 50, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 208px !important;
	height: 54px !important;
	padding: 0 2rem !important;
	color: var(--ck-white);
	font-family: 'Bai Jamjuree', sans-serif;
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	outline: none;
	min-width: 0;
	backdrop-filter: blur(10px);
	box-sizing: border-box;
	transition: border-color 0.25s ease;
}

.ck-newsletter__shortcode-form input[type="text"]:hover,
.ck-newsletter__shortcode-form input[type="email"]:hover,
.ck-newsletter__shortcode-form input[type="tel"]:hover,
.ck-newsletter__shortcode-form input[type="text"]:focus,
.ck-newsletter__shortcode-form input[type="email"]:focus,
.ck-newsletter__shortcode-form input[type="tel"]:focus {
	border-color: #3b82f6 !important;
}

.ck-newsletter__shortcode-form button,
.ck-newsletter__shortcode-form input[type="submit"] {
	flex-shrink: 0;
	height: 54px !important;
	padding: 0 1.5rem !important;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px !important;
	font-weight: 600;
	background: linear-gradient(135deg, #5FCC6A 0%, #CEFF9A 100%) !important;
	color: #141a22 !important;
	border: 0;
	border-radius: 208px !important;
	cursor: pointer;
	transition: opacity 0.3s ease;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ck-newsletter__shortcode-form button:hover,
.ck-newsletter__shortcode-form input[type="submit"]:hover {
	background: linear-gradient(135deg, #CEFF9A 0%, #5FCC6A 100%) !important;
	opacity: 1 !important;
}

@media (max-width: 768px) {
	.ck-newsletter__shortcode-form form {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
}

/* Fluent Form Submit Button Alignment Override */
.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom {
	margin-top: 0 !important;
}

/* Fluent Form Column Width Override */
.ck-newsletter__shortcode-form .ff-t-cell.ff-t-column-1 {
	flex-basis: 80% !important;
}

/* Fluent Form Submit Button Border Reset */
form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
	border-color: transparent !important;
	border: none !important;
}