/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
	/* Editorial Serif: Used for Headings and titles to feel sophisticated/high-touch */
	--heading-font: "Playfair Display", "Lora", serif;

	/* Geometric Sans: Used for Body, Nav, and Buttons for clean authority */
	--default-font: "Montserrat", "Lato", sans-serif;
	--nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
	--background-color: #F9F8F6; /* Soft Bone */
	--default-color: #2B2D2C;    /* Deep Charcoal */
	--heading-color: #115740;    /* Rich Emerald */
	--accent-color: #115740;     /* Rich Emerald */
	--surface-color: #FFFFFF;    /* Pure White (for cards) */
	--contrast-color: #F9F8F6;   /* Bone (for text on Emerald buttons) */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3D4A58;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-background-color: #F9F8F6;  /*Soft Bone Used as navigation bar background for desktop */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

.font-light {
	font-weight: 100;
}
.font-heavy {
	font-weight: 600;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Link Hover State using main.css primary color */
.footer-link-hover:hover, .footer-social-icon:hover {
	color: var(--accent-color) !important;
}

/* Style Dividers for the micro-ribbon */
.footer-policy-strip {
	border-top: 1px solid var(--grey-200);
	padding-top: 1rem;
}

.footer-policy-strip .list-inline-item {
	font-size: 0.75rem; /* Micro size for policies */
	margin: 0;
}

.footer-policy-strip .list-inline-item:hover {
	background-color: var(--accent-color);
}

.footer-policy-strip .list-inline-item:not(:last-child)::after {
	content: "|";
	margin: 0 0.5rem;
	color: var(--grey-300);
}

/* Ensure mobile-best practice: only show the essential legal/social info */
@media (max-width: 991.98px) {
	.footer-policy-strip {
		border-top: none;
	}
}
/*--------------------------------------------------------------
# Premium Pill Button - Montserrat Optimized
--------------------------------------------------------------*/

.btn-site-standard {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 48px; /* Slightly wider for the pill look */
	border-radius: 100px; /* Force perfect pill shape */

	/* Typography */
	color: var(--contrast-color);
	background: var(--accent-color);
	font-weight: 600; /* Semi-bold is the "sweet spot" for Montserrat */
	font-size: 15px; /* Slightly smaller font + more spacing = premium */
	letter-spacing: 1.2px;
	text-transform: uppercase;

	/* Depth & Elevation */
	border: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

/* The Subtle Shadow Lift */
.btn-site-standard:hover {
	color: var(--contrast-color);
	transform: translateY(-4px); /* Noticeable but elegant lift */
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
	background: var(--accent-color);
	filter: brightness(1.05); /* Very slight glow */
}

/* Icon refinement */
.btn-site-standard i {
	margin-left: 10px;
	font-size: 18px; /* Slightly larger than text for clarity */
	color: rgba(255, 255, 255, 0.8); /* Semi-transparent emerald-fill look */
	transition: all 0.3s ease;
}

.btn-site-standard:hover i {
	color: #ffffff; /* Solid white */
	transform: translateX(4px); /* Subtle animation */
}

/* Subtle "Active" State for the Click */
.btn-site-standard:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs ??? Used ???
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
  margin-bottom: 150px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 18px 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Global Flip Card, Image on front, explainer text on back
--------------------------------------------------------------*/
.flip-card {
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
	width: 300px;
	height: 300px;
	border: 1px solid #f1f1f1;
	perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
	background-color: var(--surface-color);
	color: black;
}
.flip-card-front img {
	padding: 24px;
	max-width: 50%;
}
.flip-card-front h3 {
	padding-top: 12px;
}

/* Style the back side */
.flip-card-back {
	padding: 30px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
	transform: rotateY(180deg);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero h3 {
	margin: 30px 0 30px 0;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .list-group-item {
	background: transparent;
	border: none;
}

.hero .list-group-item i {
	padding-right: 12px;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Generic styling for an information section with a graphic on
# the LEFT and narrative on the right
--------------------------------------------------------------*/
.graphic-left .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.graphic-left .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.graphic-left .content li h3 {
	margin: 0px;
}

.graphic-left .content li {
	margin-bottom: 12px;
}

.graphic-left .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.graphic-left .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
	background-color: var(--surface-color);
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	padding: 40px 20px;
	text-align: center;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	height: 100%;
}

@media (min-width: 1200px) {
	.pricing .pricing-tem:hover {
		transform: scale(1.1);
		box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	}
}

.pricing h3 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
}

.pricing .price {
	font-size: 36px;
	color: var(--heading-color);
	font-weight: 600;
	font-family: var(--heading-font);
}

.pricing .price sup {
	font-size: 20px;
	top: -15px;
	left: -3px;
}

.pricing .price span {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	font-weight: 300;
}

.pricing .icon {
	padding: 20px 0;
}

.pricing .icon i {
	font-size: 48px;
}

.pricing ul {
	padding: 0;
	list-style: none;
	color: var(--default-color);
	text-align: center;
	line-height: 26px;
	font-size: 16px;
	margin-bottom: 25px;
}

.pricing ul li {
	padding-bottom: 10px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
	text-decoration: line-through;
}

.pricing .featured {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: var(--accent-color);
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Process section - explains how to work with me
--------------------------------------------------------------*/

.process-card i {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Hero_2 Call To Action | reversed out Hero
--------------------------------------------------------------*/

.cta {
	background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
	border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	padding: 50px 0;
	margin-top: 100px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .footnote {
	
}

.accordion-button:not(.collapsed) {
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 8px 20px;
	margin: 0 0 18px 0;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	color: var(--accent-color);
	text-transform: uppercase;
	font-family: var(--default-font);  
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button {
	font-family: var(--default-font);
	font-size: 13px;
	letter-spacing: 1px;
	color: var(--default-color);
	text-transform: uppercase;
}


/*--------------------------------------------------------------
# Policy Pages Section
--------------------------------------------------------------*/
.policy {
	padding: 150px 0 60px 0;
}
.policy header { 
	background: var(--background-color);
}
.policy h3 {
	margin: 24px 0px 6px 12px;
}
.policy p {
	margin: 0 0 12px 24px;
}