/* Font Face Declaration */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/InstrumentSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/InstrumentSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
	--text-font-family: "Instrument Sans", sans-serif;
  --text-font-weight: 400;
  --text-font-style: normal;
  --text-transform: none;
  --text-letter-spacing: -0.05em;
  --text-line-height: 1.5;

  /* Text font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;

  /* Heading font sizes */
  --text-heading-size-factor: 0.9;
	--text-display-xl: max(0.75rem, clamp(3.5rem, 1.9223rem + 6.7314vw, 10rem) * var(--text-heading-size-factor));
	--text-display-l: max(0.75rem, clamp(3.375rem, 2.1311rem + 5.3074vw, 8.5rem) * var(--text-heading-size-factor));
	--text-display-m: max(0.75rem, clamp(3.25rem, 2.3701rem + 3.7540vw, 6.875rem) * var(--text-heading-size-factor));
	--text-h1: max(0.75rem, clamp(3rem, 2.3325rem + 2.8479vw, 5.75rem) * var(--text-heading-size-factor));
	--text-h2: max(0.75rem, clamp(2.5rem, 1.9539rem + 2.3301vw, 4.75rem) * var(--text-heading-size-factor));
	--text-h3: max(0.75rem, clamp(2rem, 1.6359rem + 1.5534vw, 3.5rem) * var(--text-heading-size-factor));
	--text-h4: max(0.75rem, clamp(1.75rem, 1.4466rem + 1.2945vw, 3rem) * var(--text-heading-size-factor));
	--text-h5: max(0.75rem, clamp(1.375rem, 1.2233rem + 0.6472vw, 2rem) * var(--text-heading-size-factor));
	--text-h6: max(0.75rem, clamp(1.1875rem, 1.1117rem + 0.3236vw, 1.5rem) * var(--text-heading-size-factor));
	--text-h7: max(0.75rem, clamp(1rem, 0.9545rem + 0.1942vw, 1.1875rem) * var(--text-heading-size-factor));

	--heading-font-family: "Bricolage Grotesque", sans-serif;
  --heading-font-weight: 600;
  --heading-font-style: normal;
  --heading-text-transform: capitalize;
  --heading-letter-spacing: -0.05em;
  --heading-line-height: 0.9;

	--container-width: 100rem;
	--container-padding: 3.125rem;
  --button-background: #F26522;
  --button-border-color: #F26522;
  --button-border-radius: 50px;
  --button-text-color: #333333;
  --button-font: normal normal normal var(--text-base) / var(--text-line-height) var(--text-font-family);
  --button-letter-spacing: var(--text-letter-spacing);
  --button-text-transform: var(--text-transform);

	/* color */
	--color-text: #000000;

}
*, :before, :after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  border-color: rgb(var(--border-color));
}

html {
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
  scroll-padding-top: calc(var(--sticky-area-height)  + 20px);
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

body {
  background: rgb(var(--page-background));
  font: var(--text-font-style) var(--text-font-weight) var(--text-base) / var(--text-line-height) var(--text-font-family);
  text-transform: var(--text-transform);
  letter-spacing: var(--text-letter-spacing);
  margin: 0;
  position: relative;
	color: var(--color-text);
}

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

b, strong {
  font-weight: bolder;
}


input[type="submit"] {
  cursor: pointer;
}

select {
  white-space: nowrap;
  text-overflow: ellipsis;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  background-color: #0000;
  background-image: none;
}

button, label, summary, [role="button"], [type="checkbox"], [type="radio"], [type="submit"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

.field__input {
  width: 100%;
  padding: 0 1.6rem;
  min-height: calc(5.2rem + var(--inputs-border-width) * 2);
  margin: var(--inputs-border-width);
  border-radius: var(--inputs-radius);
}


.text-xxs {
  font-size: 10px;
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.heading, .h1, .h2, .h3, .h4, .h5, .h6, .h7, h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: var(--heading-text-transform);
  line-height: var(--heading-line-height);
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

.display-xl {
  font-size: var(--text-display-xl);
}

.display-l {
  font-size: var(--text-display-l);
}

.display-m {
  font-size: var(--text-display-m);
}

.h1, h1 {
  font-size: var(--text-h1);
}

.h2, h2 {
  font-size: var(--text-h2);
}

.h3, h3 {
  font-size: var(--text-h3);
}

.h4, h4 {
  font-size: var(--text-h4);
  line-height: calc(var(--heading-line-height)  + .1);
}

.h5, h5 {
  font-size: var(--text-h5);
  line-height: calc(var(--heading-line-height)  + .1);
}

.h6, h6 {
  font-size: var(--text-h6);
  line-height: calc(var(--heading-line-height)  + .1);
}

.h7 {
  font-size: var(--text-h7);
  line-height: calc(var(--heading-line-height)  + .1);
}



.d-grid {
	display: grid;
}

.d-flex {
	display: flex;
}

.d-block {
	display: block;
}

.align-center {
	align-items: center;
}

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

.p-relative {
	position: relative;
}
.p-absolute {
	position: absolute;
}
.p-fixed {
	position: fixed;
}
.top-0 {
	top: 0;
}
.left-0 {
	left: 0;
}
.right-0 {
	right: 0;
}
.bottom-0 {
	bottom: 0;
}
.inset {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.z-50 {
	z-index: 50;
}
.p-event-none {
	pointer-events: none;
}

.list-unstyled {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* button styles */

.button{
	--button-padding-block: .625rem;
  --button-padding-inline: 2rem;
	justify-content: safe center;
  align-items: center;
  column-gap: .75rem;
  display: inline-flex;
	padding: var(--button-padding-block) var(--button-padding-inline);
	appearance: none;
  background: var(--button-background);
  border: 2px solid var(--button-border-color);
  border-radius: var(--button-border-radius);
  color: var(--button-text-color);
  font: var(--button-font);
  letter-spacing: var(--button-letter-spacing);
  text-transform: var(--button-text-transform);
}
.button-primary {
	position: relative;
	--button-background: #F26522;
	--button-border-color: #F26522;
	--button-text-color: #ffffff;
	overflow: hidden;
	z-index: 2;
	box-shadow: 0 12px 24px -12px #f2652299;
	transition: all 0.2s ease-in-out;
}
.button-label {
	position: relative;
	z-index: 1;
}
.button-primary::before {
	content: '';
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.2s ease-in-out;
	border-radius: var(--button-border-radius);
	pointer-events: none;
}
.button-primary:hover {
	color: var(--button-background);
	box-shadow: 0 0px 0px 0px #f2652299;
}
.button-primary:hover::before {
  transform: translateX(100%); /* Moves the pseudo-element into view */
}

.button-secondary {
	--button-background: #ffffff;
	--button-border-color: #ffffff;
	--button-text-color: #333333;
}


.input-field {
  width: 100%;
  padding: 1rem;
  min-height: 50px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  font-size: 1rem;
	outline: none;
	transition: all 0.2s ease-in-out;
}
.input-field:focus {
	border-color: var(--button-background);
}
.form-control {
	position: relative;
	margin-bottom: 1rem;
	text-align: start;
	width: 100%;
}
.form-control legend {
	margin-bottom: 0.5rem;
	font-weight: bold;
	font-size: 1.2rem;
}
.form-control .form-label {
	position: absolute;
  top: 50%;
  left: 1rem;
  font-size: 1rem;
	pointer-events: none;
  transform: translateY(-50%);
	transition: all 0.2s ease-in-out;
}
.form-control .input-field:focus,
.form-control .input-field:not(:placeholder-shown) {
	padding: 1.5rem 1rem .5rem;
}
.form-control .input-field::placeholder{
	opacity: 0;
}
.form-control .input-field:focus + .form-label,
.form-control .input-field:not(:placeholder-shown) + .form-label,
.form-control .textarea-field:focus + .form-label,
.form-control .textarea-field:not(:placeholder-shown) + .form-label {
	transform: translateY(-100%) scale(0.8);
  transform-origin: left top;
	opacity: 0.5;
}
.form-control .textarea-field ~ label {
 top: 1.7rem;
}
fieldset.form-control {
	margin-top: 2rem;
}
/**
 * Custom CSS for Fitmiecom Theme
 *
 * @package Fitmiecom
 * @since 1.0.0
 */

/* Container */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}



/* Section Header */
.header-grid{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
}
.header-logo-link{
	  display: flex;
  line-height: 1;
  align-items: center;
}
.header-logo svg {
	width: 100%;
	max-width: 250px;
}
/* Navigation Styles */
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--button-background);
}



/* Responsive Breakpoints */
@media screen and (min-width: 1000px) {
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu li {
        margin: 0 0.5rem;
    }
}

@media screen and (min-width: 700px) {

}


/* Banner Section Styles */
.banner-section {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;

}

.banner-content {
	position: relative;
	z-index: 2;
	text-align: start;
	padding-top: 10rem;
	padding-bottom: 0rem;
	margin-inline: auto;
	text-align: center;
	max-width: 80rem;
}

.banner-subheading {
	font-size: var(--text-lg);
	font-weight: bold;
	margin-bottom: 1rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.banner-heading {
	font-size: var(--text-display-m);
	font-weight: 700;
	line-height: 1.1;
	background: linear-gradient(135deg, #f8cf6a, #2178dd, #00d0ff, #f36364, #feca57);
	background-size: 300% 300%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 10s ease-in-out infinite;
}
.banner-image-logo {
	margin-top: 1rem;
}
.banner-image-logo svg{
	width: 100%;
	max-width: 150px;
}
.banner-background {
	position: fixed;
}
.banner-background-shape-item img {
	position: absolute;
	opacity: 0.5;
	pointer-events: none;
}
.banner-background-shape-item img:nth-child(1) {
  bottom: 0;
	left: 0;
  max-width: 500px;
}
.banner-background-shape-item img:nth-child(2) {
  top: 6%;
  left: 15%;
  max-width: 500px;
}
.banner-background-shape-item img:nth-child(3) {
  top: 10%;
  right: 0;
  max-width: 500px;
}
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.banner-actions {
	margin-top: 2rem;
}

.banner-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	border: none;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: var(--text-base);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
	.banner-section {
		min-height: 50vh;
	}
	
	.banner-heading {
		font-size: var(--text-display-m);
	}
	
	.banner-subheading {
		font-size: var(--text-base);
	}
	
	.banner-button {
		padding: 0.875rem 1.5rem;
		font-size: var(--text-sm);
	}
}

@media (max-width: 480px) {
	.banner-section {
		min-height: 40vh;
	}
	
	.banner-heading {
		font-size: var(--text-h1);
	}
	
	.banner-content {
		padding: 10rem 0 2rem;
	}
}

/* About Us Section Styles */
.about-section {
	padding: 5rem 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-content {
	padding-right: 2rem;
}


.about-stats {
	display: flex;
	justify-content: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	width: 100%;
}

.stat-item {
	text-align: center;
	padding: 3rem 1rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
	font-size: var(--text-display-m);
	font-weight: 700;
	color: var(--button-background);
	margin-bottom: 0.5rem;
}

.stat-description {
	font-size: var(--text-sm);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Responsive About Us Styles */
@media (max-width: 968px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.about-content {
		padding-right: 0;
		text-align: center;
	}
	

}

@media (max-width: 768px) {
	.about-section {
		padding: 3rem 0;
	}
	
	.about-grid {
		gap: 2rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: rem;
	}
	
	.stat-item {
		padding: 1rem 0.75rem;
	}
	
	.stat-number {
		font-size: 6rem;
	}
	
	.about-heading {
		font-size: var(--text-h1);
	}
	
	.about-description {
		font-size: var(--text-base);
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.stat-item {
		padding: 1.25rem 0.5rem;
	}
	
	
	.about-heading {
		font-size: var(--text-h2);
	}
}

/* Solutions Section Styles */
.solutions-section {
	padding: 5rem 0;
}

.solutions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.solutions-content {
	padding-right: 2rem;
}

.section-heading {
	margin-bottom: 1.5rem;
}

.section-description {
	font-size: var(--text-lg);
	line-height: 1.7;
	margin-bottom: 0;
}

.solutions-accordion {
	width: 100%;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.accordion-item {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s
ease;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s
ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.accordion-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordion-header {
	width: 100%;
	padding: 1.5rem;
	background: #fff;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
	border-bottom: 1px solid transparent;
}
.accordion-header[aria-expanded="true"] {
	border-color:#e1e5e9;
}

.accordion-title {
	font-size: var(--text-lg);
	font-weight: 600;
	color: #333;
	margin: 0;
}

.accordion-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: #666;
	transition: transform 0.3s ease;
	line-height: 1;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #fff;
}

.accordion-content.active {
	max-height: 200px;
}

.accordion-content p {
	padding: 1.5rem 1.5rem;
	margin: 0;
	font-size: var(--text-base);
	line-height: 1.6;
	color: #666;
}

/* Responsive Solutions Styles */
@media (max-width: 968px) {
	.solutions-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.solutions-content {
		padding-right: 0;
		text-align: center;
	}
	
	.section-heading {
		font-size: var(--text-display-m);
	}
}

@media (max-width: 768px) {
	.solutions-section {
		padding: 3rem 0;
	}
	
	.solutions-grid {
		gap: 2rem;
	}
	.accordion-content p {
		font-size: var(--text-sm);
	}
	
	.section-heading {
		font-size: var(--text-h1);
	}
	
	.solutions-description {
		font-size: var(--text-base);
	}
}

@media (max-width: 480px) {
	.accordion-header {
		padding: 1rem;
	}
	.section-heading {
		font-size: var(--text-h2);
	}
}

/* Contact Us Section Styles */
.contact-section {
	padding: 5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-actions {
	margin-top: 2rem;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	text-align: start;
}
.contact-form .wpcf7-form {
	  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
@media (min-width: 768px) {
	fieldset.form-control {
		max-width: calc(50% - 1rem);
	}
}

/* Footer Styles */
.site-footer {
	background-color: #f8f9fa;
	padding: 5rem 0 0rem;
}
.footer-main {
	padding-bottom: 5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-main-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: center;
}

.footer-logo {
	display: flex;
	align-items: flex-start;
}

.footer-logo-wrapper img {
	max-height: 80px;
	width: 100%;
  max-width: 250px;
}

.footer-logo-image {
	max-height: 80px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.footer-branding {
	display: flex;
}

.footer-site-title {
	font-size: var(--text-h3);
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.footer-site-title a {
	text-decoration: none;
	transition: color 0.3s ease;
}


.footer-site-description {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.5;
}

.footer-contact-title {
	font-size: var(--text-base);
	margin: 0 0 1rem 0;
}

.footer-contact-links {
	color: var(--color-text);
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
}
.footer-contact-link {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Footer Menu in Contact Section */
.footer-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.75rem;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: var(--color-text);
	text-decoration: none;
	font-size: var(--text-sm);
	transition: color 0.3s ease;
	display: block;
	font-weight: bold;
}

.footer-menu a:hover {
	color: var(--button-background);
	text-decoration: underline;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-label {
	font-weight: 600;
	color: #4ecdc4;
	min-width: 80px;
	font-size: var(--text-sm);
}

.contact-link {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: var(--text-sm);
}

.contact-link:hover {
	color: #4ecdc4;
}

.contact-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--text-sm);
}
.footer-bottom {
	background-color: #ffffff;
}
.footer-bottom-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem 0;
}

.copyright p {
	margin: 0;
	font-size: var(--text-sm);
}

.copyright a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.footer-nav li {
	margin: 0;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: var(--text-sm);
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #4ecdc4;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
	.footer-main-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	
	.footer-logo {
		justify-content: center;
	}
	.footer-logo-link {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer-menu{
		justify-content: center;
	}
	.footer-contact-links {
		align-items: center;
		justify-content: center;
	}
	
	.contact-item {
		justify-content: center;
		flex-direction: column;
		text-align: center;
		gap: 0.25rem;
	}
	
	.contact-label {
		min-width: auto;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.footer-nav {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 2rem 0 0rem;
	}
	.footer-main {
		padding-bottom: 2rem;
	}
	.footer-main {
		gap: 1.5rem;
	}
	
	.footer-site-title {
		font-size: var(--text-h4);
	}
	
	.footer-contact-title {
		font-size: var(--text-h5);
	}
	
	.footer-nav {
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* ========================================
   HIGHLIGHTED PROJECTS SECTION
   ======================================== */

.highlighted-projects-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.projects-header {
	text-align: center;
	margin-bottom: 4rem;
}

.projects-description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.projects-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.project-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}


.project-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	flex: 1 0 auto;
}

.project-image img {
	width: 100%;
	object-fit: cover;
}


.project-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: var(--text-lg);
	font-weight: 500;
}

.project-content {
	display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
	width: 100%;
	padding: 1.5rem;
}

.project-title {
	margin: 0;
}

.project-description {
	font-size: var(--text-base);
	line-height: var(--text-line-height);
	color: #666;
	margin: 0;
}

.project-description p {
	margin: 0 0 1rem 0;
}

.project-description p:last-child {
	margin-bottom: 0;
}

.project-button {
	margin-top: auto;
}

.project-button .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 2rem;
	background: rgb(var(--button-background));
	color: var(--button-text-color);
	border: 2px solid rgb(var(--button-border-color));
	border-radius: var(--button-border-radius);
	font: var(--button-font);
	letter-spacing: var(--button-letter-spacing);
	text-transform: var(--button-text-transform);
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.project-button .btn:hover {
	background: rgb(var(--button-border-color));
	color: rgb(var(--button-background));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Projects Section */
@media (max-width: 768px) {
	.header-logo{
		max-width: 150px;
	}
	.highlighted-projects-section {
		padding: 3rem 0;
	}

	.projects-header {
		margin-bottom: 3rem;
	}
	.projects-description {
		font-size: var(--text-base);
	}
	.projects-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.highlighted-projects-section {
		padding: 2rem 0;
	}

	.projects-header {
		margin-bottom: 2rem;
	}
	.project-content {
		gap: 1rem;
	}

	.project-title {
		font-size: var(--text-h4);
	}

	.project-button .btn {
		padding: 0.625rem 1.5rem;
		font-size: var(--text-sm);
	}
	.footer-bottom-content {
		justify-content: center;
	}
}

/* ========================================
   LATEST BLOG POSTS SECTION
   ======================================== */

.latest-blog-posts-section {
	padding: 5rem 0;
	background-color: #ffffff;
}

.blog-header {
	text-align: center;
	margin-bottom: 4rem;
}

.blog-description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-size: var(--text-lg);
	line-height: 1.7;
	color: #666;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.blog-post-item {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
	background-color: #f8f9fa;
}

.blog-post-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
	transform: scale(1.05);
}

.blog-post-content {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	flex: 1;
}

.blog-post-header {
	margin-bottom: 1rem;
}

.blog-post-title {
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.blog-post-title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-post-title a:hover {
	color: var(--button-background);
}

.blog-post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: var(--text-sm);
	color: #666;
	flex-wrap: wrap;
}

.blog-post-date {
	display: inline-flex;
	align-items: center;
}

.blog-post-category {
	display: inline-flex;
	align-items: center;
}

.blog-post-category a {
	color: var(--button-background);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-post-category a:hover {
	color: #000000;
	text-decoration: underline;
}

.blog-post-excerpt {
	font-size: var(--text-base);
	line-height: 1.6;
	color: #666;
	margin-bottom: 1.5rem;
	flex: 1;
}

.blog-post-excerpt p {
	margin: 0;
}

.blog-post-footer {
	margin-top: auto;
}

.blog-post-link {
	display: inline-flex;
	align-items: center;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	font-size: var(--text-base);
	transition: color 0.2s ease, transform 0.2s ease;
}

.blog-post-link:hover {
	color: var(--button-background);
	transform: translateX(4px);
}

.blog-actions {
	text-align: center;
	margin-top: 2rem;
}

/* Responsive Design for Blog Posts Section */
@media (max-width: 968px) {
	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.latest-blog-posts-section {
		padding: 3rem 0;
	}

	.blog-header {
		margin-bottom: 3rem;
	}

	.blog-description {
		font-size: var(--text-base);
	}

	.blog-posts-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.latest-blog-posts-section {
		padding: 2rem 0;
	}

	.blog-header {
		margin-bottom: 2rem;
	}

	.blog-post-content {
		padding: 1.25rem;
	}

	.blog-post-meta {
		font-size: var(--text-xs);
		gap: 0.75rem;
	}
}

/* ========================================
   ARCHIVE & CATEGORY PAGES
   ======================================== */

.archive-section {
	padding: 5rem 0;
	background-color: #ffffff;
}

.archive-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.archive-title {
	font-size: var(--text-h2);
	font-family: var(--heading-font-family);
	margin-bottom: 1rem;
	color: var(--color-text);
	line-height: 1.2;
}

.archive-description {
	font-size: var(--text-lg);
	line-height: 1.7;
	color: #666;
	margin-top: 1rem;
}

.archive-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.archive-post-item {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.archive-post-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
	background-color: #f8f9fa;
}

.archive-post-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.archive-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.archive-post-item:hover .archive-post-image img {
	transform: scale(1.05);
}

.archive-post-content {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	flex: 1;
}

.archive-post-header {
	margin-bottom: 1rem;
}

.archive-post-title {
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.archive-post-title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.archive-post-title a:hover {
	color: var(--button-background);
}

.archive-post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: var(--text-sm);
	color: #666;
	flex-wrap: wrap;
}

.archive-post-date {
	display: inline-flex;
	align-items: center;
}

.archive-post-category {
	display: inline-flex;
	align-items: center;
}

.archive-post-category a {
	color: var(--button-background);
	text-decoration: none;
	transition: color 0.2s ease;
}

.archive-post-category a:hover {
	color: #000000;
	text-decoration: underline;
}

.archive-post-excerpt {
	font-size: var(--text-base);
	line-height: 1.6;
	color: #666;
	margin-bottom: 1.5rem;
	flex: 1;
}

.archive-post-excerpt p {
	margin: 0;
}

.archive-post-footer {
	margin-top: auto;
}

.archive-post-link {
	display: inline-flex;
	align-items: center;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	font-size: var(--text-base);
	transition: color 0.2s ease, transform 0.2s ease;
}

.archive-post-link:hover {
	color: var(--button-background);
	transform: translateX(4px);
}

/* Archive No Posts */
.archive-no-posts {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.archive-no-posts-title {
	font-size: var(--text-h3);
	font-family: var(--heading-font-family);
	margin-bottom: 1rem;
	color: var(--color-text);
}

.archive-no-posts-text {
	font-size: var(--text-base);
	color: #666;
	margin-bottom: 2rem;
}

/* Pagination */
.pagination,
.navigation,
.posts-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: 3rem 0;
	flex-wrap: wrap;
}

.pagination .nav-links,
.navigation .nav-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pagination a,
.pagination span,
.navigation a,
.navigation span,
.posts-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: var(--color-text);
	font-size: var(--text-base);
	transition: all 0.2s ease;
	background: #ffffff;
}

.pagination a:hover,
.navigation a:hover,
.posts-navigation a:hover {
	border-color: var(--button-background);
	color: var(--button-background);
	background: #fff;
}

.pagination .current,
.navigation .current {
	border-color: var(--button-background);
	background: var(--button-background);
	color: #ffffff;
}

.pagination .pagination-arrow,
.navigation .pagination-arrow {
	font-size: 18px;
	line-height: 1;
}

.pagination .pagination-number,
.navigation .pagination-number {
	font-weight: 600;
}

/* WordPress default pagination classes */
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: var(--color-text);
	font-size: var(--text-base);
	transition: all 0.2s ease;
	background: #ffffff;
}

.page-numbers:hover {
	border-color: var(--button-background);
	color: var(--button-background);
}

.page-numbers.current {
	border-color: var(--button-background);
	background: var(--button-background);
	color: #ffffff;
}

.page-numbers.prev,
.page-numbers.next {
	font-weight: 600;
}

/* Responsive Archive */
@media (max-width: 968px) {
	.archive-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.archive-section {
		padding: 3rem 0;
	}

	.archive-header {
		margin-bottom: 3rem;
	}

	.archive-description {
		font-size: var(--text-base);
	}

	.archive-posts-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.archive-section {
		padding: 2rem 0;
	}

	.archive-header {
		margin-bottom: 2rem;
	}

	.archive-post-content {
		padding: 1.25rem;
	}

	.archive-post-meta {
		font-size: var(--text-xs);
		gap: 0.75rem;
	}

	.pagination a,
	.pagination span {
		min-width: 36px;
		height: 36px;
		padding: 0 8px;
		font-size: var(--text-sm);
	}
}

/* ========================================
   CONTACT PROJECT FORM SECTION
   ======================================== */

.wpcf7-form-control {
	    display: grid;
    justify-content: start;
    text-align: start;
}
.wpcf7-list-item{
	margin: 0 0 0.5rem 0;
}
.wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
/* ========================================
   RICH TEXT CONTENT STYLES (Posts & Pages)
   ======================================== */
.single-post-section {
	padding: 5rem 0;
}
.entry-content {
	font-family: "Inter", var(--text-font-family), sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text);
	max-width: 40rem;
	margin: 0 auto;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

/* Typography */
.entry-content p {
	margin: 0 0 1.5rem 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	line-height: var(--heading-line-height);
	text-transform: var(--heading-text-transform);
	letter-spacing: var(--heading-letter-spacing);
	margin: 2.5rem 0 1.25rem 0;
	color: var(--color-text);
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
	margin-top: 0;
}
.entry-header {
	max-width: 40rem;
  margin: 0rem auto 2rem;
}
.entry-title {
	font-size: var(--text-h3);
	line-height: 1.05;
}
.entry-content h1 {
	font-size: var(--text-h3);
}

.entry-content h2 {
	font-size: var(--text-h4);
}

.entry-content h3 {
	font-size: var(--text-h5);
}

.entry-content h4 {
	font-size: var(--text-h6);
}

.entry-content h5 {
	font-size: var(--text-h6);
}

.entry-content h6 {
	font-size: var(--text-h6);
}
.entry-header .entry-meta {
	margin-top: 1rem;
}
.post-thumbnail {
	max-height: 500px;
	overflow: hidden;
	margin-bottom: 2rem;
}
.post-thumbnail img{
	width: 100%;
  height: auto;
  display: block;
	pointer-events: none;
}
/* Links */
.entry-content a {
	color: var(--button-background);
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.3);
	text-underline-offset: 2px;
	transition: text-decoration-color 0.2s ease;
}

.entry-content a:hover {
	text-decoration-color: var(--color-text);
}

/* Lists */
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5rem 0;
	padding-left: 1.75rem;
}

.entry-content ul {
	list-style-type: disc;
}

.entry-content ol {
	list-style-type: decimal;
}

.entry-content li {
	margin: 0.5rem 0;
	line-height: 1.7;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.entry-content ul ul {
	list-style-type: circle;
}

.entry-content ul ul ul {
	list-style-type: square;
}

/* Images */
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 2rem 0;
	display: block;
}

.entry-content figure {
	margin: 2rem 0;
	text-align: center;
}

.entry-content figure img {
	margin: 0;
}

.entry-content figcaption {
	font-size: 14px;
	line-height: 1.6;
	color: #666666;
	margin-top: 0.75rem;
	font-style: italic;
}

/* Blockquotes */
.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 0 1.5rem 1.5rem;
	border-left: 4px solid var(--color-text);
	background-color: #f8f9fa;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: #333333;
}

.entry-content blockquote p {
	margin: 0 0 1rem 0;
}

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

.entry-content blockquote cite {
	display: block;
	margin-top: 1rem;
	font-size: 14px;
	font-style: normal;
	color: #666666;
}

.entry-content blockquote cite::before {
	content: "— ";
}

/* Code */
.entry-content code {
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
	font-size: 0.9em;
	background-color: #f4f4f4;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	color: #d63384;
}

.entry-content pre {
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
	font-size: 14px;
	line-height: 1.6;
	background-color: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	overflow-x: auto;
	margin: 2rem 0;
	border: 1px solid #e5e7eb;
}

.entry-content pre code {
	background-color: transparent;
	padding: 0;
	color: var(--color-text);
	font-size: inherit;
}

/* Tables */
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: 15px;
}

.entry-content thead {
	background-color: #f8f9fa;
}

.entry-content th {
	padding: 0.75rem 1rem;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid #e5e7eb;
	color: var(--color-text);
}

.entry-content td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.entry-content tbody tr:hover {
	background-color: #f8f9fa;
}

.entry-content tbody tr:last-child td {
	border-bottom: none;
}

/* Horizontal Rules */
.entry-content hr {
	border: 0;
	height: 1px;
	background-color: #e5e7eb;
	margin: 3rem 0;
}

/* Text Formatting */
.entry-content strong,
.entry-content b {
	font-weight: 700;
	color: var(--color-text);
}

.entry-content em,
.entry-content i {
	font-style: italic;
}

.entry-content mark {
	background-color: #fff3cd;
	padding: 0.1em 0.2em;
	border-radius: 2px;
}

.entry-content del {
	text-decoration: line-through;
	opacity: 0.7;
}

.entry-content ins {
	text-decoration: underline;
	text-decoration-style: wavy;
}

/* Definition Lists */
.entry-content dl {
	margin: 1.5rem 0;
}

.entry-content dt {
	font-weight: 600;
	margin-top: 1rem;
	color: var(--color-text);
}

.entry-content dt:first-child {
	margin-top: 0;
}

.entry-content dd {
	margin: 0.5rem 0 0 1.5rem;
	padding-left: 1rem;
	border-left: 2px solid #e5e7eb;
}

/* Address */
.entry-content address {
	font-style: normal;
	margin: 1.5rem 0;
	line-height: 1.7;
}

/* Abbreviations */
.entry-content abbr {
	border-bottom: 1px dotted currentColor;
	cursor: help;
}

/* Page Links (wp_link_pages) */
.entry-content .page-links {
	margin: 2rem 0;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}

.entry-content .page-links::before {
	content: "Pages: ";
	font-weight: 600;
	margin-right: 0.5rem;
}

.entry-content .page-links a {
	display: inline-block;
	margin: 0 0.25rem;
	padding: 0.25rem 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.entry-content .page-links a:hover {
	background-color: #f8f9fa;
	border-color: var(--color-text);
}

.entry-content .page-links > span {
	display: inline-block;
	margin: 0 0.25rem;
	padding: 0.25rem 0.75rem;
	border: 1px solid var(--color-text);
	border-radius: 4px;
	background-color: var(--color-text);
	color: #ffffff;
}

/* WordPress Blocks Alignment */
.entry-content .alignleft {
	float: left;
	margin: 0 1.5rem 1.5rem 0;
}

.entry-content .alignright {
	float: right;
	margin: 0 0 1.5rem 1.5rem;
}

.entry-content .aligncenter {
	display: block;
	margin: 2rem auto;
	text-align: center;
}

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

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

/* Responsive */
@media (max-width: 768px) {
	:root {
		--container-padding: 1rem;
	}
	.header-action-button{
		padding: 5px 15px;
	}
	.entry-content {
		font-size: 15px;
		line-height: 1.6;
	}

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	.entry-content blockquote {
		padding: 1rem 0 1rem 1rem;
		margin: 1.5rem 0;
	}

	.entry-content pre {
		font-size: 13px;
		padding: 1rem;
	}

	.entry-content table {
		font-size: 14px;
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.entry-content .alignleft,
	.entry-content .alignright {
		float: none;
		margin: 1.5rem auto;
		display: block;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   COMMENTS SECTION & COMMENT FORM
   ======================================== */

.comments-area {
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid #e5e7eb;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.comments-title {
	font-size: var(--text-h3);
	font-family: var(--heading-font-family);
	margin-bottom: 2rem;
	color: var(--color-text);
	line-height: 1.2;
}

.comments-title span {
	font-style: italic;
}

/* Comment Navigation */
.comment-navigation {
	display: flex;
	justify-content: space-between;
	margin: 2rem 0;
	font-size: var(--text-sm);
}

.comment-navigation a {
	color: var(--button-background);
	text-decoration: none;
	transition: color 0.2s ease;
}

.comment-navigation a:hover {
	color: var(--color-text);
	text-decoration: underline;
}

/* Comment List */
.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	margin-left: 3rem;
	margin-top: 1.5rem;
	padding: 0;
}

.comment {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.comment-body {
	display: flex;
	gap: 1.5rem;
}

.comment-author {
	margin-bottom: 0.5rem;
}

.comment-author-avatar {
	float: left;
	margin-right: 1rem;
	margin-bottom: 0.5rem;
}

.comment-author-avatar img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

.comment-author-name {
	font-weight: 600;
	font-size: var(--text-base);
	color: var(--color-text);
	margin-right: 0.5rem;
}

.comment-author-name a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.comment-author-name a:hover {
	color: var(--button-background);
}

.comment-metadata {
	font-size: var(--text-sm);
	color: #666;
	margin-bottom: 0.75rem;
}

.comment-metadata a {
	color: #666;
	text-decoration: none;
	transition: color 0.2s ease;
}

.comment-metadata a:hover {
	color: var(--button-background);
}

.comment-content {
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--color-text);
	margin-bottom: 1rem;
}

.comment-content p {
	margin: 0 0 1rem 0;
}

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

.comment-reply-link {
	display: inline-block;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--button-background);
	text-decoration: none;
	transition: color 0.2s ease;
}

.comment-reply-link:hover {
	color: var(--color-text);
	text-decoration: underline;
}

/* Comment Form */
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
	margin-bottom: 1.5rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: var(--text-base);
	color: var(--color-text);
}

.comment-form .required {
	color: #dc2626;
	text-decoration: none;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-text);
	background: #ffffff;
	font-family: "Inter", var(--text-font-family), sans-serif;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	border-color: var(--button-background);
	box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}

.comment-form textarea {
	resize: vertical;
	min-height: 150px;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.comment-form-cookies-consent label {
	margin: 0;
	font-weight: normal;
	font-size: var(--text-sm);
	color: #666;
	cursor: pointer;
}

.comment-form .form-submit {
	margin: 0;
}

.comment-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: var(--button-background);
	color: #ffffff;
	border: 1px solid var(--button-background);
	border-radius: 30px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
	font-family: "Inter", var(--text-font-family), sans-serif;
}

.comment-form input[type="submit"]:hover {
	background: #d85a1e;
	border-color: #d85a1e;
}

.comment-form input[type="submit"]:active {
	transform: translateY(1px);
}

/* No Comments Message */
.no-comments {
	font-size: var(--text-base);
	color: #666;
	text-align: center;
	padding: 2rem 0;
	margin: 2rem 0;
	font-style: italic;
}

/* Comment Reply Title */
.comment-reply-title {
	font-size: var(--text-h4);
	font-family: var(--heading-font-family);
	margin-bottom: 1.5rem;
	color: var(--color-text);
}

.comment-reply-title a {
	color: var(--button-background);
	text-decoration: none;
	font-size: var(--text-base);
	font-weight: normal;
	margin-left: 1rem;
}

.comment-reply-title a:hover {
	text-decoration: underline;
}

/* Logged In Comment Form */
.logged-in-as {
	font-size: var(--text-sm);
	color: #666;
	margin-bottom: 1.5rem;
}

.logged-in-as a {
	color: var(--button-background);
	text-decoration: none;
}

.logged-in-as a:hover {
	text-decoration: underline;
}


/* CONTACT PROJECT FORM SECTION */
.page-template-default:has(.contact-project-form) .entry-header{
	display: none;
}
.contact-project-form {
	padding: 5rem 0;
}
.cpf-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.cpf-heading {
	margin-bottom: 2rem;
}
.cpf-item {
	gap: 0.5rem;
}
@media (min-width: 1000px) {
	.cpf-grid{
		grid-template-columns: 1fr 1fr;
	}
}
/* Responsive Comments */
@media (max-width: 768px) {
	.comments-area {
		margin-top: 3rem;
		padding-top: 3rem;
	}

	.comments-title {
		font-size: var(--text-h4);
		margin-bottom: 1.5rem;
	}

	.comment-list .children {
		margin-left: 1.5rem;
	}

	.comment-body {
		gap: 1rem;
	}

	.comment-author-avatar {
		width: 50px;
		height: 50px;
	}

	.comment-author-avatar img {
		width: 50px;
		height: 50px;
	}

	.comment-navigation {
		flex-direction: column;
		gap: 1rem;
	}
	fieldset.form-control {
		margin-top: 1rem;
	}
}

@media (max-width: 480px) {
	.comments-area {
		margin-top: 2rem;
		padding-top: 2rem;
	}

	.comment-list .children {
		margin-left: 1rem;
	}

	.comment-body {
		flex-direction: column;
		gap: 0.75rem;
	}

	.comment-author-avatar {
		float: none;
		margin-right: 0;
		margin-bottom: 0.75rem;
	}

	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"],
	.comment-form textarea {
		font-size: 15px;
		padding: 10px 12px;
	}

	.comment-form input[type="submit"] {
		width: 100%;
		padding: 14px 28px;
	}
}

@media (max-width: 1199px) {
	#header-navigation {
		display: none;
	}
}