/**
 * Virtenzo Blocks - Global Styles
 *
 * Migrated from hello-elementor-child theme
 * Cleaned up and optimized for block theme
 *
 * @package Virtenzo_Blocks
 * @since 1.0.0
 */

/* ==========================================================================
   Table of Contents
   ========================================================================== */
/*
 * 1. Utility Classes
 * 2. Page Title Header
 * 3. Homepage Gradient Header + Hero
 * 4. Sticky Header
 * 5. Mobile Navigation
 * 6. Table of Contents (TOC) Sidebar
 * 7. Blog Archive Grid
 * 8. Footer Styling
 * 9. 3D Viewer Panel
 * 10. Responsive Design
 */

/* ==========================================================================
   1. Utility Classes
   ========================================================================== */

.ws-3 {
	word-spacing: 3px;
}

.ws-5 {
	word-spacing: 5px;
}

.ws-10 {
	word-spacing: 10px;
}

strong,
b {
	font-weight: 600;
}

.heading-white {
	color: #fff;
}

.no-margin-top {
	margin-top: 0;
}

/* ==========================================================================
   2. Page Title Header
   ========================================================================== */

/* Remove default spacing from template parts */
.wp-block-template-part {
	margin: 0;
	padding: 0;
}

/* Page title styling */
.page-title-header .wp-block-post-title {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.8px;
	line-height: 48px;
	margin: 0;
}

/* Page title header - background image with full control */
.page-title-header {
	background-image: url('../images/bg-header-default.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: var(--wp--preset--spacing--70);
	padding-bottom: var(--wp--preset--spacing--70);
}

/* ==========================================================================
   3. Homepage Gradient Header + Hero
   ========================================================================== */

/* Homepage: gradient background on body */
body.home {
	background: linear-gradient(145deg, #2B95A3 5%, #79C8CA 100%);
}

/* Homepage: transparent header (before scroll) */
body.home #header-nav {
	background-color: transparent;
	background-image: none;
}

/* Homepage: transparent top hero section */
body.home .hero-home-top-section {
	background-color: transparent;
}

body.home .hero-home-top-section h1 {
	font-size: 62px;
}

body.home .hero-home-top-section h6 {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
}

/* Homepage: light-green footer background */
body.home .has-footer-background-background-color {
	background-color: rgb(228, 244, 244) !important;
}

/* Homepage: remove bottom padding from entry content */
body.home .entry-content {
	padding-bottom: 0;
}

/* Homepage: white background for contact section */
.home-contact-section {
	background-color: #ffffff;
}

.home-white-section {
	margin-top: 0;
	padding-top: 20px;
	background-color: #ffffff;
}

body.home .zigzag-layout {
	margin-top: 0;
}

/* ==========================================================================
   4. Sticky Header (CSS-only)
   ========================================================================== */

/* Ensure header template part doesn't block sticky */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
}

#header-nav {
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state - white background with shadow (non-home only) */
body:not(.home) header.wp-block-template-part.scrolled #header-nav {
	background-color: #fff !important;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Scrolled state - gradient with shadow (home only) */
body.home header.wp-block-template-part.scrolled #header-nav {
	background-image: linear-gradient(145deg, #2b95a3 5%, #79c8ca 100%);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Header gradient on non-home pages */
body:not(.home) #header-nav {
	background-image: linear-gradient(145deg, #2b95a3 5%, #79c8ca 100%);
}

/* Navigation menu styling */
.wp-block-navigation {
	gap: var(--wp--preset--spacing--40);
}

/* Header navigation link styling - desktop only */
#header-nav .desktop-nav .wp-block-navigation-item__content {
	padding: 10px 20px;
	color: #fff;
	font-size: 14px;
}

#header-nav .desktop-nav .wp-block-navigation-item__content:hover {
	border-radius: 30px;
	background: #57A8A4;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent);
}

/* Yellow CTA Button (reusable) - Frontend */
.cta-button-yellow .wp-block-button__link {
	background-color: rgb(240, 209, 36);
	border-radius: 50px;
	box-shadow: none;
	color: rgb(58, 58, 58);
	padding: 18px 25px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	line-height: 14px;
	transition: all .3s;
	background-position: calc(100% - 6px) center;
}

.cta-button-yellow .wp-block-button__link>span {
	font-weight: 700;
}

.cta-button-yellow .wp-block-button__link:hover {
	background-image: url("../images/chevron-right.png");
	background-position: calc(100% - 3px) 50%;
	background-repeat: no-repeat;
	padding-left: 20px;
	padding-right: 30px;
}

/* Yellow CTA Button - Block Editor (higher specificity to override editor defaults) */
.editor-styles-wrapper .cta-button-yellow .wp-block-button__link,
.editor-styles-wrapper .cta-button-yellow .wp-element-button {
	background-color: rgb(240, 209, 36);
	border-radius: 50px;
	box-shadow: none;
	color: rgb(58, 58, 58);
	padding: 18px 25px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	line-height: 14px;
}

.wp-block-navigation__responsive-container-open {
	display: none;
}

/* Site logo and title */
.wp-block-site-logo {
	max-width: 150px;
}

.wp-block-site-title {
	margin: 0;
	font-size: var(--wp--preset--font-size--large);
	font-weight: 600;
}

.wp-block-site-title a {
	text-decoration: none;
}

/* ==========================================================================
   4. Mobile Navigation
   ========================================================================== */

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
	display: none;
	background: rgba(0, 0, 0, 0.1);
	border: none;
	cursor: pointer;
	padding: 0;
	width: 40px;
	height: 40px;
	z-index: 9999;
}

.mobile-menu-toggle img {
	display: block;
	margin: auto;
}

/* Mobile menu overlay - fullscreen container */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: #fff;
	z-index: 10000;
	transition: right 0.3s ease-in-out;
	overflow-y: auto;
}

.mobile-menu-overlay.active {
	right: 0;
}

/* Mobile menu container */
.mobile-menu-container {
	display: flex;
	flex-direction: column;
	padding: 0;
}

/* Mobile menu header - logo and close button */
.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 40px 20px;
	margin-bottom: 10px;
	min-height: 51.25px;
}

.mobile-menu-header a {
	display: flex;
	align-items: center;
	line-height: 0;
}

.mobile-menu-logo {
	width: 205px;
	height: auto;
	display: block;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #0f4e56;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.mobile-menu-close img {
	transform: rotate(45deg);
	display: block;
}

/* Mobile menu navigation */
.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
	padding: 0;
}

.mobile-menu-nav a {
	height: 60px;
	padding: 0 0 0 40px;
	border-radius: 50px;
	background-size: cover;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	color: #0f4e56;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: background-color 0.2s ease;
}

.mobile-menu-nav a:hover {
	background-color: #E7FFFE;
}

/* Mobile navigation block - ensure vertical layout */
.mobile-menu-nav .wp-block-navigation__container {
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.mobile-menu-nav .wp-block-navigation-item {
	width: 100%;
}

.mobile-menu-nav .wp-block-navigation-item__content {
	height: 60px;
	padding: 0 0 0 40px;
	border-radius: 50px;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	color: #0f4e56 !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	width: 100%;
	transition: background-color 0.2s ease;
}

.mobile-menu-nav .wp-block-navigation-item__content:hover {
	background-color: #E7FFFE;
}

/* Mobile menu CTA button */
.mobile-menu-cta {
	padding: 20px 40px;
	margin-top: auto;
}

.mobile-menu-cta .wp-block-buttons {
	width: 100%;
}

.mobile-menu-cta .wp-block-button {
	width: 100%;
}

/* Mobile language switcher */
.mobile-lang-switcher {
	list-style: none;
	margin: 0;
	padding: 20px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-lang-item {
	margin: 0;
	padding: 0;
}

.mobile-lang-item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 0;
	text-decoration: none;
	color: var(--wp--preset--color--body-text);
	transition: opacity 0.2s ease;
}

.mobile-lang-item a:hover {
	opacity: 0.7;
}

.mobile-lang-flag {
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.mobile-lang-item.has-flag-en .mobile-lang-flag {
	background-image: url('../images/icon-lang-en.png');
}

.mobile-lang-item.has-flag-pl .mobile-lang-flag {
	background-image: url('../images/icon-lang-pl.png');
}

.mobile-lang-name {
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--wp--preset--color--body-text);
}

.mobile-lang-item.active .mobile-lang-name {
	font-weight: 600;
}


/* Scrolled header state - change hamburger color */
header.wp-block-template-part.scrolled .mobile-menu-toggle {
	color: #0f4e56;
}

/* Hide hamburger when menu is open */
.mobile-menu-toggle[aria-expanded="true"] {
	display: none;
}

/* ==========================================================================
   5. Table of Contents (TOC) Sidebar
   ========================================================================== */

.output-wrapper {
	display: flex;
	gap: 40px;
}

.output-toc {
	flex-basis: 20%;
	align-self: flex-start;
	position: sticky;
	top: 25px;
	z-index: 0;
}

.output-toc>span {
	font-family: Poppins, sans-serif;
	font-weight: 800;
	color: var(--wp--preset--color--primary);
	font-size: 20px;
	line-height: 1;
	display: block;
	margin: 10px 0 20px;
}

.output-toc ol {
	list-style-position: unset;
	padding-left: 30px;
	font-family: Poppins;
	font-weight: 600;
}

.output-toc ol>li {
	line-height: 1.4;
	margin-bottom: 10px;
	margin-top: 10px;
}

.output-toc ol>li:first-child {
	margin-top: 0;
}

.output-toc ol>li:last-child {
	margin-bottom: 0;
}

.output-toc ol>li:marker {
	font-weight: 700;
}

.output-toc ol>li a {
	color: var(--wp--preset--color--body-text);
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	flex: 1 1 0;
	text-decoration: none;
}

.output-content {
	flex: 1 0 0;
}

.output-content h2 {
	margin: 0;
	padding: 10px 0 15px;
	font-weight: 700;
	font-size: 40px;
	font-family: Poppins, sans-serif;
	line-height: 64px;
	color: #333;
}

/* ==========================================================================
   6. Blog Archive Grid / Posts Grid
   ========================================================================== */

/* Posts Grid Section - Full width background */
.posts-grid-section {
	background-color: rgb(228, 244, 244);
}

/* Native Block Theme Posts Grid */
.vrtnz-posts-grid .wp-block-post-template {
	gap: 50px;
}

/* Equal height columns */
.vrtnz-posts-grid .wp-block-post-template.is-layout-grid>li {
	display: flex;
}

.vrtnz-posts-grid .post-card.wp-block-group {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 20px;
	background-color: #FFFFFF;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	overflow: hidden;
}

.vrtnz-posts-grid .post-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vrtnz-posts-grid .wp-block-post-featured-image {
	margin: 0;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.vrtnz-posts-grid .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.vrtnz-posts-grid .post-card:hover .wp-block-post-featured-image img {
	transform: scale(1.03);
}

/* Category badge styling */
.vrtnz-posts-grid .post-category-badge {
	margin: 0;
}

.vrtnz-posts-grid .post-category-badge a {
	color: rgba(15, 78, 86, 0.5);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.vrtnz-posts-grid .post-category-badge a:hover {
	color: var(--wp--preset--color--body-text);
}

/* Post title styling */
.vrtnz-posts-grid .wp-block-post-title {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	line-height: 40px;
}

.vrtnz-posts-grid .wp-block-post-title a {
	color: #0f4e56;
	text-decoration: none;
}

.vrtnz-posts-grid .wp-block-post-title a:hover {
	color: var(--wp--preset--color--primary);
}

/* Post excerpt */
.vrtnz-posts-grid .wp-block-post-excerpt {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #0f4e56;
	line-height: 24px;
}

.vrtnz-posts-grid .wp-block-post-excerpt__excerpt {
	margin: 0;
}

/* Pagination styling */
.vrtnz-posts-grid .wp-block-query-pagination {
	gap: 10px;
}

.vrtnz-posts-grid .wp-block-query-pagination-numbers .page-numbers {
	padding: 8px 14px;
	border-radius: 4px;
	text-decoration: none;
	color: var(--wp--preset--color--body-text);
	transition: background-color 0.2s ease;
}

.vrtnz-posts-grid .wp-block-query-pagination-numbers .page-numbers:hover {
	background-color: var(--wp--preset--color--gray-background);
}

.vrtnz-posts-grid .wp-block-query-pagination-numbers .page-numbers.current {
	background-color: var(--wp--preset--color--primary);
	color: #fff;
}

.vrtnz-posts-grid .wp-block-query-pagination-previous,
.vrtnz-posts-grid .wp-block-query-pagination-next {
	color: var(--wp--preset--color--body-text);
	text-decoration: none;
}


/* ==========================================================================
   7. Footer Styling
   ========================================================================== */

/* Footer main container */
.site-footer {
	margin: 0;
	padding: 65px 0 0 45px;
}

/* Footer main columns */
.footer-main-columns {
	gap: 60px;
	margin-bottom: 40px;
}

/* Footer left column */
.footer-left-column {
	gap: 20px;
}

/* Footer logo */
.footer-logo {
	margin: 0;
}

.footer-logo img {
	max-width: 230px;
	height: auto;
}

/* Footer tagline */
.footer-tagline {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	margin: 0 0 158px 0;
	padding-top: 50px;
}

/* Footer menu section */
.footer-menu-section {
	background-color: transparent;
	padding: 0;
}

/* Footer menu columns */
.footer-menu-columns {
	gap: 40px;
}

/* Column headings (Virtenzo, Company) */
.footer-menu-section .wp-block-heading {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 50px 0;
	color: var(--wp--preset--color--text-heading);
}

/* Footer navigation menus */
.footer-menu-section .wp-block-navigation,
.footer-menu-wrap {
	gap: 0;
}

.footer-menu-section .wp-block-navigation__container,
.footer-menu-wrap .wp-block-navigation__container {
	gap: 0;
	flex-direction: column;
	align-items: flex-start;
}

.footer-menu-section .wp-block-navigation-item,
.footer-menu-wrap .wp-block-navigation-item {
	padding: 0;
	margin: 0;
	width: auto;
}

.footer-menu-section .wp-block-navigation-item__content,
.footer-menu-wrap .wp-block-navigation-item__content,
.footer-menu-section .wp-block-navigation-item a,
.footer-menu-wrap .wp-block-navigation-item a {
	color: var(--wp--preset--color--body-text) !important;
	text-decoration: none;
	padding: 10px 0;
	line-height: 1;
	display: block;
	text-align: left;
}

.footer-menu-section .wp-block-navigation-item__content:hover,
.footer-menu-wrap .wp-block-navigation-item__content:hover {
	background: none;
	background-image: none;
	opacity: 0.8;
}

/* Current/active menu item */
.footer-menu-section .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.footer-menu-wrap .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.footer-menu-section .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
.footer-menu-wrap .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content {
	font-weight: 700;
}

/* Privacy menu in footer - horizontal layout */
.privacy-menu-nav {
	gap: 0;
}

.privacy-menu-nav .wp-block-navigation__container {
	gap: 10px;
	flex-wrap: wrap;
	flex-direction: row;
}

.privacy-menu-nav .wp-block-navigation-item {
	padding: 0;
	margin: 0;
}

.privacy-menu-nav .wp-block-navigation-item__content,
.privacy-menu-nav .wp-block-navigation-item a {
	font-size: 14px;
	color: var(--wp--preset--color--body-text) !important;
	text-decoration: none !important;
	padding: 0;
	line-height: 1;
}

/* Remove hover background from footer nav */
footer .wp-block-navigation-item:hover {
	background: none;
	background-image: none;
}

/* Footer bottom bar */
.footer-bottom-bar {
	margin-top: 40px;
	padding-bottom: 40px;
	padding-top: 0;
	gap: 20px;
	align-items: center;
}

/* Footer bottom left - copyright and privacy menu */
.footer-bottom-left {
	gap: 30px;
	align-items: center;
}

.footer-copyright {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

/* Footer bottom right - globe icon and language switcher */
.footer-bottom-right {
	gap: 15px;
	align-items: center;
	text-align: right;
}

.footer-globe-icon {
	margin: 0;
}

.footer-globe-icon img {
	width: 20px;
	height: 20px;
	display: block;
}

/* Footer language switcher - custom shortcode, text only, inline */
.footer-bottom-right .footer-lang-list,
.footer-lang-switcher .footer-lang-list {
	display: flex;
	flex-direction: row;
	gap: 10px;
	line-height: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom-right .footer-lang-list li,
.footer-lang-switcher .footer-lang-list li {
	margin: 0;
	padding: 0;
}

.footer-bottom-right .footer-lang-list a,
.footer-lang-switcher .footer-lang-list a {
	color: var(--wp--preset--color--body-text) !important;
	text-decoration: none !important;
	font-size: 14px;
	padding: 0;
	display: inline;
	font-family: Poppins, sans-serif;
	font-weight: 400;
}

.footer-bottom-right .footer-lang-list li.active a,
.footer-lang-switcher .footer-lang-list li.active a {
	font-weight: 600;
}

/* Legacy WPML widget support (fallback) */
.footer-lang-switcher .wpml-ls-legacy-list-horizontal {
	display: flex;
	flex-direction: row;
	gap: 10px;
	line-height: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-lang-switcher .wpml-ls-legacy-list-horizontal a {
	color: var(--wp--preset--color--body-text);
	text-decoration: none;
	font-size: 14px;
	padding: 0;
	display: inline;
	font-family: Poppins, sans-serif;
	font-weight: 400;
}

.footer-lang-switcher .wpml-ls-legacy-list-horizontal .wpml-ls-current-language a {
	font-weight: 700;
}

.footer-lang-switcher .wpml-ls-legacy-list-horizontal li {
	margin: 0;
	padding: 0;
}

.footer-lang-switcher .wpml-ls-flag {
	display: none;
}

/* ==========================================================================
   8. 3D Viewer Panel (Sketchfab)
   ========================================================================== */

.swiper,
.elementor-swiper-button {
	z-index: 0;
}

.elementor-widget-video .elementor-wrapper iframe,
.elementor-widget-video .elementor-wrapper video {
	background-color: transparent;
}

/* Virtenzo Panel Styling - Active button state handled by JS */

/* ==========================================================================
   9. Responsive Design
   ========================================================================== */


/* ==========================================================================
   9. Contact Form 7 Styling
   ========================================================================== */

/* Form wrapper */
.wpcf7 {
	margin: 0;
}

/* Form fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 20px;
	border: 1px solid rgb(121, 200, 202);
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 18px;
	min-height: 59px;
	color: rgb(31, 33, 36);
	background-color: #FFFFFF;
	transition: border-color 0.3s ease;
}

.wpcf7-form-control-wrap {
	margin-top: 3px;
	display: inline-block;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: #79C8CA;
	outline: none;
	box-shadow: 0 0 0 2px rgba(121, 200, 202, 0.1);
}

.wpcf7 textarea {
	padding-top: 20px;
	min-height: 120px;
	resize: vertical;
}

/* Labels */
.wpcf7 label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: var(--wp--preset--color--text-heading);
	margin-bottom: 8px;
}

/* Form paragraphs (field wrappers) */
.wpcf7 p {
	margin-bottom: 20px;
}

/* Submit button - matches default fill button from theme.json */
.wpcf7 input[type="submit"] {
	display: block;
	margin: 0 auto;
	background-color: #0F4E56;
	color: #FFFFFF;
	border: none;
	border-radius: 99px;
	padding: 18px 40px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	background-color: #0F4E56;
	transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active {
	transform: translateY(0);
}

/* Success message */
.wpcf7-response-output.wpcf7-mail-sent-ok {
	background-color: #E7FFFE;
	border: 1px solid #79C8CA;
	border-left: 4px solid #79C8CA;
	padding: 16px;
	color: #0F4E56;
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	border-radius: 10px;
}

/* Error message */
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng {
	background-color: #FFF4E2;
	border: 1px solid #A88A56;
	border-left: 4px solid #A88A56;
	padding: 16px;
	color: #0F4E56;
	font-family: 'Montserrat', sans-serif;
	margin-top: 20px;
	border-radius: 3px;
}

/* Validation error text */
.wpcf7-not-valid-tip {
	color: #A88A56;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	margin-top: 4px;
}

/* Hide response output by default */
.wpcf7-response-output {
	display: none;
}

.wpcf7-response-output.wpcf7-display-none {
	display: none;
}

/* Show response when active */
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
	display: block;
	margin: 0;
	border-radius: 10px;
}

/* Ajax loader */
.wpcf7 .ajax-loader {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
}

/* reCAPTCHA styling */
.wpcf7 .grecaptcha-badge {
	margin-bottom: 20px;
}


/* Home Contact Section - form width constraint */
.home-contact-section .wpcf7 {
	max-width: 425px;
}

/* ==========================================================================
   10. Button Styling
   ========================================================================== */

/* Button transitions - theme.json can't define transitions */
.wp-block-button__link,
.wp-element-button {
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Outline button hover - fill effect (theme.json handles base styles) */
.wp-block-button.is-style-outline>.wp-block-button__link:hover,
.wp-block-button.is-style-outline>.wp-element-button:hover {
	background-color: var(--wp--preset--color--body-text);
	color: var(--wp--preset--color--white);
}

/* ==========================================================================
   11. Big Hero Section Variations
   ========================================================================== */

/* Default: White background, teal heading (no extra class needed) */
.big-hero-section {
	background-color: #ffffff;
	padding: 60px;
	margin: 0;
}

.big-hero-section .big-hero-heading {
	color: rgb(121, 200, 202);
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -5px;
}

/* Variation: Gradient background (add class "hero-gradient") */
.big-hero-section.hero-gradient {
	background: linear-gradient(145deg, rgb(43, 149, 163) 0%, rgb(121, 200, 202) 100%);
}

.big-hero-section.hero-gradient .big-hero-heading {
	color: #ffffff;
}

/* Variation: Light green background (add class "hero-light-green") */
.big-hero-section.hero-light-green {
	background-color: rgb(228, 244, 244);
}

.big-hero-section.hero-light-green .big-hero-heading {
	color: rgb(121, 200, 202);
}


/* ==========================================================================
   12. Contact Info Panel
   ========================================================================== */

.contact-info-panel {
	text-align: center;
	background-color: rgba(121, 200, 202, 0.19);
	border-radius: 20px;
	padding: 40px;
}

.contact-info-panel p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

/* Team member name/role description (smaller text) */
.contact-info-panel .elementor-image-box-description,
.contact-info-panel .team-member-role {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

/* Team member card - center alignment */
.contact-info-panel .team-member-card {
	justify-content: center;
}

/* Team member avatar - 80px circle */
.team-member-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

/* Contact buttons container - center alignment */
.contact-info-panel .contact-buttons {
	justify-content: center;
	align-items: center;
}

/* Contact button icon - 20px for email icon */
.contact-button-icon img {
	width: 20px;
	height: 20px;
	display: block;
}

/* Email contact button - styled like inline button variation */
.contact-button--email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 40px;
	border-radius: 99px;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button--email:hover {
	background-color: var(--wp--preset--color--body-text);
}

/* Envelope icon - override for email button */
.contact-button--email .contact-button-icon {
	margin: 0;
}

/* Email link text */
.contact-button--email p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}

.contact-button--email a {
	color: var(--wp--preset--color--body-text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-button--email:hover a {
	color: var(--wp--preset--color--white);
}

/* ==========================================================================
   13. Zig Zag Layout
   ========================================================================== */

/* .zigzag-layout - container for all zigzag items */

.zigzag-layout .zigzag-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 50px;
}

/* Media wrapper - allows for images, videos, or other media */
.zigzag-layout .zigzag-media {
	flex: 0 0 48%;
	max-width: 48%;
}

.zigzag-layout .zigzag-media img,
.zigzag-layout .zigzag-media video,
.zigzag-layout .zigzag-media iframe {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* Content wrapper */
.zigzag-layout .zigzag-content {
	flex: 0 0 48%;
	max-width: 48%;
}

.zigzag-layout .zigzag-content h3 {
	margin-bottom: 15px;
}

.zigzag-layout .zigzag-content p {
	line-height: 1.8;
}

/* Zig-zag alternating layout using nth-child */
/* Odd items (1st, 3rd, 5th...): media left, content right - default order */
.zigzag-layout .zigzag-item:nth-child(odd) {
	flex-direction: row;
}

.zigzag-layout .zigzag-item:nth-child(odd) .zigzag-media {
	order: 1;
}

.zigzag-layout .zigzag-item:nth-child(odd) .zigzag-content {
	order: 2;
}

/* Even items (2nd, 4th, 6th...): content left, media right */
.zigzag-layout .zigzag-item:nth-child(even) {
	flex-direction: row;
}

.zigzag-layout .zigzag-item:nth-child(even) .zigzag-media {
	order: 2;
}

.zigzag-layout .zigzag-item:nth-child(even) .zigzag-content {
	order: 1;
}


/* ==========================================================================
   14. Utility Classes - Typography & Sizing
   ========================================================================== */

/* Metric Numbers - Large display numbers for statistics */
.metric-number {
	font-size: 80px;
	font-weight: 700;
	font-family: var(--wp--preset--font-family--poppins);
	color: var(--wp--preset--color--primary);
	line-height: 1;
}

/* Process Step Numbers */
.process-step-number {
	font-size: 60px;
	font-weight: 700;
	font-family: var(--wp--preset--font-family--poppins);
	color: var(--wp--preset--color--primary);
	line-height: 1;
}

/* Button Icons - Small inline icons inside buttons */
.button-icon {
	width: 14px;
	height: 14px;
	margin-right: 10px;
	vertical-align: middle;
	display: inline-block;
}

/* Text size utilities */
.text-18 {
	font-size: 18px;
}

.text-20 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
}

/* ==========================================================================
   15. Gradient Hero Section
   ========================================================================== */

.gradient-hero-section {
	background: linear-gradient(145deg, rgb(43, 149, 163) 0%, rgb(121, 200, 202) 100%);
	margin-top: 0;
	margin-bottom: 0;
	padding: 60px;
}

.gradient-hero-section .gradient-hero-heading {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -5px;
	line-height: 1;
	color: #ffffff;
	font-family: var(--wp--preset--font-family--poppins);
}


/* ==========================================================================
   16. Standard CTA Button Styling
   ========================================================================== */

.cta-button-standard .wp-block-button__link,
.cta-button-standard .wp-element-button {
	border-radius: 30px;
	padding: 15px 30px;
}

/* ==========================================================================
   17. Spacing Utilities
   ========================================================================== */

.no-horizontal-padding {
	padding-left: 0;
	padding-right: 0;
}

.section-padding-vertical {
	padding-top: var(--wp--preset--spacing--60);
	padding-bottom: var(--wp--preset--spacing--60);
}

.column-padding-vertical {
	padding-top: var(--wp--preset--spacing--30);
	padding-bottom: var(--wp--preset--spacing--30);
}

.item-margin-bottom {
	margin-bottom: var(--wp--preset--spacing--50);
}

/* ==========================================================================
   18. White Hexagon Shape
   ========================================================================== */

.hexagon-bg {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,2 93.3,27 93.3,73 50,98 6.7,73 6.7,27" fill="white"/></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* Hexagon List Components */
.hexagon-list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	gap: 0;
	max-width: 360px;
}

/* Hexagon list columns container */
.wp-block-columns:has(.hexagon-list-item) {
	gap: 50px;
	justify-content: center;
}

.hexagon-number,
.hexagon-content {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,2 93.3,27 93.3,73 50,98 6.7,73 6.7,27" fill="white"/></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	aspect-ratio: 1 / 1;
}

.hexagon-number {
	position: absolute;
	width: 93px;
	height: 93px;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 40px;
	font-weight: 700;
	color: #79c8ca;
	line-height: 36px;
	text-align: center;
	aspect-ratio: 1 / 1;
	left: -3px;
	bottom: calc(100% - 131px);
	transform: translateX(-50%);
	z-index: 1;
}

.hexagon-content {
	width: 100%;
	max-width: 340px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
	text-align: center;
}

.hexagon-content h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 40px;
	color: var(--wp--preset--color--text-heading);
	line-height: 46px;
	margin: 0 0 15px 0;
}

.hexagon-content p {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 16px;
	font-weight: 300;
	color: #0f4e56;
	line-height: 1.5;
	margin: 0;
	padding: 0 15px;
}

.hexagon-list-testimonials {
	margin-top: 50px;
}

.hexagon-list-testimonials .wp-block-image.testimonials-logo {
	width: 125px;
	height: 125px;
	position: absolute;
	left: 50%;
	top: -25px;
	transform: translateX(-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='50' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}

.hexagon-list-testimonials .wp-block-image.testimonials-logo img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.hexagon-list-testimonials .hexagon-content h3 {
	font-size: 16px;
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.hexagon-list-testimonials .hexagon-content p.five-stars {
	font-size: 16px;
	line-height: 24px;
	padding-top: 3px;
	color: var(--wp--preset--color--text-heading);
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	margin: 10px auto;
	display: inline-block;
	padding-right: 130px;
	/* Space for 5 stars (120px) + gap (10px) */
	background-image:
		url('../images/icon-star.svg'),
		url('../images/icon-star.svg'),
		url('../images/icon-star.svg'),
		url('../images/icon-star.svg'),
		url('../images/icon-star.svg');
	background-repeat: no-repeat;
	background-position:
		right 96px center,
		/* 4th star from right */
		right 72px center,
		/* 3rd star from right */
		right 48px center,
		/* 2nd star from right */
		right 24px center,
		/* 1st star from right */
		right 0 center;
	/* Rightmost star */
	background-size: 24px 24px;
}

/* ==========================================================================
   19. Media Queries (Responsive Design)
   ========================================================================== */

/* Tablet and Mobile (< 1170px) */
@media (max-width: 1170px) {

	/* Mobile menu from right side */
	.elementor-nav-menu--dropdown {
		position: fixed;
		top: 0;
		right: -100%;
		left: unset;
		height: 100vh;
		margin-top: 0;
		width: 80%;
		max-width: 300px;
		background: #fff;
		box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease-in-out;
	}

	header .elementor-nav-menu--dropdown {
		z-index: 9999;
	}

	.elementor-nav-menu--dropdown[aria-hidden=false] {
		right: 0;
		transition: right 0.3s ease-in-out;
	}

	.elementor-menu-toggle {
		position: relative;
		z-index: 99999;
	}

	.elementor-menu-toggle[aria-expanded=true] svg,
	#header-nav.scrolled .elementor-menu-toggle svg {
		fill: #0b5155;
	}

	.output-toc {
		top: 15px;
	}
}

/* Tablet (< 1024px) - Tablets only */
@media (max-width: 1024px) {

	/* Blog posts grid */
	.vrtnz-posts-grid .wp-block-post-template {
		gap: 25px;
	}

	/* Keep original heading sizes on tablets - no changes needed */
	/* Big hero sections - no size reduction on tablets */
	.big-hero-section {
		padding: 30px;
	}

	/* Gradient hero sections - no size reduction on tablets */
	.gradient-hero-section {
		padding: 30px;
	}

	.hexagon-number {
		left: 29px;
		bottom: auto;
		top: -20px;
	}

	/* Hexagon content - intermediate sizes for tablets */
	.hexagon-content h3 {
		font-size: 30px;
		line-height: 1.1;
	}

	.hexagon-content p {
		font-size: 14px;
	}

	/* Contact section - add spacing between form and right column on tablets */
	.home-contact-section .wp-block-columns {
		gap: 20px;
	}

	/* Footer language menu - add right padding on tablets */
	.footer-bottom-right .footer-lang-list,
	.footer-lang-switcher .footer-lang-list {
		padding-right: 45px;
	}

	/* Top navbar navigation - set gap on tablets */
	.wp-block-navigation {
		gap: 5px;
	}

	/* Homepage hero - full width columns on tablets */
	body.home .hero-home-top-section .wp-block-columns {
		flex-direction: column;
	}

	/* Homepage hero - constrain right column image on tablets */
	body.home .hero-home-top-section .wp-block-column:last-child img {
		max-width: 350px;
		margin: 0 auto;
		display: block;
	}
}

/* Tablet (< 768px) - Mobile only */
@media (max-width: 767px) {

	/* Page title header - reduced vertical padding on mobile only */
	.page-title-header {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.output-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	body.home .hero-home-top-section h1 {
		font-size: 42px;
	}

	.hexagon-number {
		margin-block-start: 0;
		bottom: auto;
	}

	.output-toc {
		position: static;
	}

	/* Footer responsive for mobile only */
	.footer-main-columns {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.footer-menu-columns {
		flex-direction: column;
		gap: 30px;
	}

	.footer-logo img {
		margin: 0 auto;
	}

	/* Center footer content on mobile */
	.site-footer .wp-block-columns>.wp-block-column {
		text-align: center;
	}

	/* Footer bottom bar - stack vertically on mobile */
	.footer-bottom-bar {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-bottom-left {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	.footer-bottom-right {
		justify-content: center;
		text-align: center;
	}

	.privacy-menu-nav .wp-block-navigation__container {
		justify-content: center;
	}

	/* Blog posts grid - mobile 1 column only */
	.vrtnz-posts-grid .wp-block-post-template {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	.vrtnz-posts-grid .post-card .wp-block-group {
		padding: 20px 24px;
	}

	/* Zigzag layout - stack vertically on mobile only */
	.zigzag-layout .zigzag-item {
		flex-direction: column !important;
		gap: 25px;
	}

	.zigzag-layout .zigzag-media,
	.zigzag-layout .zigzag-content {
		flex: 0 0 100%;
		max-width: 100%;
	}

	/* Always show media first on mobile, regardless of odd/even */
	.zigzag-layout .zigzag-item .zigzag-media {
		order: 1 !important;
	}

	.zigzag-layout .zigzag-item .zigzag-content {
		order: 2 !important;
	}

	.zigzag-layout .zigzag-content h3 {
		font-size: 24px;
	}
}

/* Mobile (< 576px) - Mobile phones only */
@media (max-width: 576px) {
	ycl-item .ycl-img {
		order: -1;
	}

	/* Contact info panel - reduce horizontal padding on mobile phones */
	.contact-info-panel {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* Center flex children in contact panel on mobile phones */
	.contact-info-panel .team-member-card,
	.contact-info-panel .contact-buttons {
		justify-content: center;
		align-items: center;
	}

	/* Footer padding adjustments for mobile phones */
	.site-footer {
		padding: 40px 20px;
		min-height: auto;
	}

	.footer-tagline {
		margin-bottom: 40px;
		padding-top: 15px;
	}

	.footer-menu-section h5 {
		margin-bottom: 30px;
	}

	/* Center footer menu links on mobile phones */
	.footer-menu-section .wp-block-navigation__container,
	.footer-menu-wrap .wp-block-navigation__container {
		align-items: center;
	}

	.footer-menu-section .wp-block-navigation-item__content,
	.footer-menu-wrap .wp-block-navigation-item__content,
	.footer-menu-section .wp-block-navigation-item a,
	.footer-menu-wrap .wp-block-navigation-item a {
		text-align: center;
	}

	/* Footer bottom bar - full width padding on mobile phones */
	.footer-bottom-left,
	.footer-bottom-right {
		width: 100%;
		padding: 0 30px;
	}

	/* Contact Form 7 - mobile phones responsive */
	.wpcf7 input[type="submit"] {
		width: 100%;
	}

	/* Reduce heading sizes on mobile phones only */
	body.home .hero-home-top-section h1 {
		font-size: 36px !important;
	}

	.big-hero-section .big-hero-heading {
		font-size: 28px !important;
		letter-spacing: -1px;
		line-height: 32px;
	}

	.gradient-hero-section .gradient-hero-heading {
		font-size: 28px !important;
		letter-spacing: -1px;
	}

	.page-title-header .wp-block-post-title {
		font-size: 32px !important;
		line-height: 40px;
	}

	.output-content h2 {
		font-size: 32px !important;
		line-height: 40px;
	}

	.hexagon-content h3 {
		font-size: 32px !important;
		line-height: 38px;
	}

	.zigzag-layout .zigzag-content h3 {
		font-size: 20px !important;
	}

	/* Homepage hero - full width image on mobile phones */
	body.home .hero-home-top-section .wp-block-column:last-child img {
		max-width: 100%;
	}
}

/* Mobile navigation responsive behavior */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	.desktop-nav,
	.desktop-cta,
	.desktop-lang {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.mobile-menu-overlay {
		display: none;
	}
}