.he-row-column-content {
width: 100%;
}
.he-row-wrapper {
margin-bottom: 40px;
}
.he-row-inner {
display: grid;
gap: 60px; }
.he-row-wrapper[data-columns="1"] .he-row-inner {
grid-template-columns: 1fr;
}
.he-row-wrapper[data-columns="2"] .he-row-inner {
grid-template-columns: repeat(2, 1fr);
}
.he-row-wrapper[data-columns="3"] .he-row-inner {
grid-template-columns: repeat(3, 1fr);
}
.he-row-wrapper[data-columns="4"] .he-row-inner {
grid-template-columns: repeat(4, 1fr);
}
.he-column-wrapper {
min-width: 0;
}
.he-column-inner {
height: 100%;
} .he-container-output {
margin-bottom: 20px;
}
.he-container-output:last-child {
margin-bottom: 0;
}
.he-column-inner img {
max-width: 100%;
height: auto;
} @media (max-width: 1024px) {
.he-row-wrapper[data-columns="4"] .he-row-inner {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.he-row-wrapper[data-columns="3"] .he-row-inner {
grid-template-columns: repeat(2, 1fr);
}
.he-row-wrapper[data-columns="4"] .he-row-inner {
grid-template-columns: repeat(2, 1fr);
}
.he-row-inner {
gap: 60px; }
}
@media (max-width: 600px) {
.he-row-wrapper[data-columns="2"] .he-row-inner,
.he-row-wrapper[data-columns="3"] .he-row-inner,
.he-row-wrapper[data-columns="4"] .he-row-inner {
grid-template-columns: 1fr;
}
.he-row-wrapper {
margin-bottom: 30px;
}
.he-row-inner {
gap: 15px;
}
}:root { --color-primary: #7cb342;
--color-primary-dark: #689f38;
--color-primary-light: #8bc34a;
--color-secondary: #1e5a2e;
--color-accent: #ffc107;
--color-dark-blue: #1a3a5c;
--color-navy: #2c5282; --color-white: #ffffff;
--color-gray-50: #f9fafb;
--color-gray-100: #f3f4f6;
--color-gray-200: #e5e7eb;
--color-gray-300: #d1d5db;
--color-gray-600: #4b5563;
--color-gray-700: #374151;
--color-gray-900: #111827;
--color-black: #000000; --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--font-heading: "Helvetica Neue", Arial, sans-serif; --spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 1.5rem;
--spacing-lg: 2rem;
--spacing-xl: 3rem;
--spacing-2xl: 4rem;
--spacing-3xl: 6rem; --radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 12px; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --container-max-width: 1400px;
--container-padding: 1rem;
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
scroll-behavior: smooth;
}
body {
font-family: var(--font-primary);
font-size: 1rem;
line-height: 1.6;
color: var(--color-gray-700);
background-color: var(--color-white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--color-gray-900);
margin-bottom: var(--spacing-md);
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.75rem;
}
h4 {
font-size: 1.5rem;
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-bottom: var(--spacing-md);
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--color-primary-dark);
} .container {
max-width: var(--container-max-width);
margin: 0 auto;
padding: 0 var(--container-padding);
width: 100%;
}
.container-fluid {
width: 100%;
padding: 0 var(--container-padding);
} .btn {
display: inline-block;
padding: 0.75rem 2rem;
font-size: 1rem;
font-weight: 600;
text-align: center;
text-decoration: none;
border: none;
border-radius: var(--radius-md);
cursor: pointer;
transition: all 0.3s ease;
line-height: 1.5;
}
.btn-primary {
background-color: var(--color-primary);
color: var(--color-white);
}
.btn-primary:hover {
background-color: var(--color-primary-dark);
color: var(--color-white);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-secondary {
background-color: var(--color-accent);
color: var(--color-gray-900);
}
.btn-secondary:hover {
background-color: #ffb300;
color: var(--color-gray-900);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-outline {
background-color: transparent;
color: var(--color-primary);
border: 2px solid var(--color-primary);
}
.btn-outline:hover {
background-color: var(--color-primary);
color: var(--color-white);
} .card {
background-color: var(--color-white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.card-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.card-content {
padding: var(--spacing-lg);
}
.card-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: var(--spacing-sm);
color: var(--color-gray-900);
}
.card-text {
color: var(--color-gray-600);
margin-bottom: var(--spacing-md);
line-height: 1.6;
} .grid {
display: grid;
gap: var(--spacing-lg);
}
.grid-cols-1 {
grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
grid-template-columns: repeat(4, 1fr);
} .section {
padding: var(--spacing-3xl) 0;
}
.section-title {
text-align: center;
margin-bottom: var(--spacing-xl);
}
.section-subtitle {
text-align: center;
color: var(--color-gray-600);
font-size: 1.125rem;
margin-bottom: var(--spacing-2xl);
max-width: 700px;
margin-left: auto;
margin-right: auto;
} .text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.mb-0 {
margin-bottom: 0;
}
.mb-1 {
margin-bottom: var(--spacing-xs);
}
.mb-2 {
margin-bottom: var(--spacing-sm);
}
.mb-3 {
margin-bottom: var(--spacing-md);
}
.mb-4 {
margin-bottom: var(--spacing-lg);
}
.mb-5 {
margin-bottom: var(--spacing-xl);
}
.mt-0 {
margin-top: 0;
}
.mt-1 {
margin-top: var(--spacing-xs);
}
.mt-2 {
margin-top: var(--spacing-sm);
}
.mt-3 {
margin-top: var(--spacing-md);
}
.mt-4 {
margin-top: var(--spacing-lg);
}
.mt-5 {
margin-top: var(--spacing-xl);
} @media (max-width: 1024px) {
:root {
--container-padding: 1.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.75rem;
}
.grid-cols-4 {
grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
:root {
--spacing-3xl: 3rem;
--spacing-2xl: 2rem;
}
h1 {
font-size: 1.75rem;
}
h2 {
font-size: 1.5rem;
}
.grid-cols-4,
.grid-cols-3,
.grid-cols-2 {
grid-template-columns: repeat(1, 1fr);
}
.btn {
padding: 0.625rem 1.5rem;
font-size: 0.9375rem;
}
} .alignleft {
float: left;
margin-right: var(--spacing-md);
margin-bottom: var(--spacing-md);
}
.alignright {
float: right;
margin-left: var(--spacing-md);
margin-bottom: var(--spacing-md);
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
max-width: 100%;
}
.wp-caption-text {
font-size: 0.875rem;
color: var(--color-gray-600);
margin-top: var(--spacing-xs);
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .page-content-wrapper {
max-width: 100% !important;
} .faq-section {
padding: var(--spacing-3xl) 0;
background-color: #f5f5f5;
}
.faq-header {
text-align: center;
margin-bottom: var(--spacing-2xl);
}
.faq-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--color-gray-900);
margin-bottom: var(--spacing-sm);
}
.faq-subtitle {
font-size: 1.125rem;
color: var(--color-gray-600);
max-width: 700px;
margin: 0 auto;
}
.faq-accordion {
margin: 0 auto;
}
.faq-item {
background-color: var(--color-white);
border-radius: var(--radius-md);
margin-bottom: var(--spacing-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: box-shadow 0.3s ease;
}
.faq-item:hover {
box-shadow: var(--shadow-md);
}
.faq-question {
width: 100%;
padding: var(--spacing-lg);
display: flex;
justify-content: space-between;
align-items: center;
background-color: transparent;
border: none;
cursor: pointer;
font-size: 1.125rem;
font-weight: 600;
color: var(--color-gray-900);
text-align: left;
transition: color 0.3s ease;
}
.faq-question:hover {
color: var(--color-primary);
}
.faq-icon {
font-size: 1.75rem;
font-weight: 300;
color: var(--color-primary);
transition: transform 0.3s ease;
flex-shrink: 0;
margin-left: var(--spacing-md);
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
max-height: none !important;
padding: 0 var(--spacing-lg) var(--spacing-lg);
}
.faq-answer p {
color: var(--color-gray-700);
font-size: 1rem;
line-height: 1.7;
margin: 0;
} @media (max-width: 768px) {
.faq-title {
font-size: 2rem;
}
.faq-question {
padding: var(--spacing-md);
font-size: 1rem;
}
.faq-icon {
font-size: 1.5rem;
}
.faq-item.active .faq-answer {
padding: 0 var(--spacing-md) var(--spacing-md);
}
}.header-top {
background-color: var(--color-gray-900);
color: var(--color-white);
padding: 0.75rem 0;
font-size: 0.875rem;
display: none;
}
.header-top-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--spacing-md);
}
.contact-info {
display: flex;
gap: var(--spacing-lg);
align-items: center;
}
.contact-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--color-white);
text-decoration: none;
transition: color 0.3s ease;
}
.contact-item:hover {
color: var(--color-primary);
}
.contact-item svg {
flex-shrink: 0;
}
.social-links {
display: flex;
gap: var(--spacing-sm);
align-items: center;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
color: var(--color-white);
transition: all 0.3s ease;
border-radius: 50%;
}
.social-links a:hover {
color: var(--color-primary);
background-color: rgba(124, 179, 66, 0.1);
} .header-main {
background-color: var(--color-white);
box-shadow: var(--shadow-sm);
position: relative;
z-index: 100;
} .header-transparent .header-main {
position: absolute;
top: 40;
left: 0;
right: 0;
background-color: transparent;
box-shadow: none;
z-index: 1000;
}
.header-transparent .header-main .site-title,
.header-transparent .header-main .nav-menu a,
.header-transparent .header-main .hamburger .line {
color: var(--color-white);
}
.header-transparent .header-main .nav-menu a::after {
background-color: var(--color-white);
}
.header-transparent .header-main .btn-primary {
background-color: rgba(255, 255, 255, 0.2);
color: var(--color-white);
border: 1px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.header-transparent .header-main .btn-primary:hover {
background-color: var(--color-white);
color: var(--color-primary);
}
.site-header.sticky .header-main {
position: fixed;
top: 0;
left: 0;
right: 0;
box-shadow: var(--shadow-md);
animation: slideDown 0.3s ease;
background-color: var(--color-white);
} .site-header.sticky.header-transparent .header-main {
background-color: var(--color-white);
}
.site-header.sticky.header-transparent .header-main .site-title,
.site-header.sticky.header-transparent .header-main .nav-menu a,
.site-header.sticky.header-transparent .header-main .hamburger .line {
color: var(--color-gray-700);
}
.site-header.sticky.header-transparent .header-main .btn-primary {
background-color: var(--color-primary);
color: var(--color-white);
border: none;
backdrop-filter: none;
}
.site-header.sticky.hide .header-main {
transform: translateY(-100%);
}
@keyframes slideDown {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
.header-main-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
gap: var(--spacing-lg);
} .site-branding {
flex-shrink: 0;
} .site-logo-link {
display: block;
position: relative;
line-height: 0;
} .site-logo {
max-width: 180px;
height: 75px;
transition: opacity 0.3s ease;
} .site-logo-white {
display: block;
opacity: 1;
}
.site-logo-color {
display: none;
opacity: 0;
} .site-header:not(.header-transparent) .site-logo-white {
display: none;
opacity: 0;
}
.site-header:not(.header-transparent) .site-logo-color {
display: block;
opacity: 1;
} .site-header.sticky .site-logo-white {
display: none;
opacity: 0;
}
.site-header.sticky .site-logo-color {
display: block;
opacity: 1;
}
.site-logo-text {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
}
.site-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--color-gray-900);
margin: 0;
}
.custom-logo-link {
display: block;
line-height: 0;
}
.custom-logo {
max-height: 60px;
width: auto;
height: auto;
} .main-navigation {
flex-grow: 1;
display: flex;
justify-content: center;
}
.nav-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: var(--spacing-md);
}
.nav-menu li {
position: relative;
}
.nav-menu a {
display: block;
padding: 0.75rem 1rem;
color: var(--color-gray-700);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}
.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
color: var(--color-primary);
}
.nav-menu a::after {
content: "";
position: absolute;
bottom: 0;
left: 1rem;
right: 1rem;
height: 2px;
background-color: var(--color-primary);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
transform: scaleX(1);
} .nav-menu .sub-menu {
position: absolute;
top: 100%;
left: 0;
background-color: var(--color-white);
box-shadow: var(--shadow-lg);
border-radius: var(--radius-md);
min-width: 220px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-menu .sub-menu li {
display: block;
}
.nav-menu .sub-menu a {
padding: 0.75rem 1.5rem;
white-space: nowrap;
}
.nav-menu .sub-menu a::after {
display: none;
} .header-actions {
display: flex;
align-items: center;
gap: var(--spacing-md);
flex-shrink: 0;
} .mobile-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 1001;
}
.hamburger {
display: flex;
flex-direction: column;
gap: 4px;
width: 24px;
}
.hamburger .line {
display: block;
width: 100%;
height: 2px;
background-color: var(--color-gray-900);
transition: all 0.3s ease;
}
.mobile-menu-toggle.active .line:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active .line:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active .line:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
} .nav-menu .sub-menu a {
color: var(--color-gray-700) !important;
}
.nav-menu .sub-menu a:hover {
color: var(--color-primary) !important;
background-color: var(--color-gray-100);
} .header-transparent .header-main .nav-menu .sub-menu a {
color: var(--color-gray-700) !important;
}
.header-transparent .header-main .nav-menu .sub-menu a:hover {
color: var(--color-primary) !important;
} .submenu-toggle {
display: none;
}  .mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
}
.mobile-menu-overlay.active {
display: block;
}
@media (max-width: 1024px) {
.header-actions .btn {
display: none;
}
.mobile-menu-toggle {
display: block;
z-index: 10000;
position: relative;
} .hamburger .line {
background-color: var(--color-gray-900);
}
.header-transparent .hamburger .line {
background-color: var(--color-gray-900);
} .mobile-menu-toggle.active .hamburger .line {
background-color: var(--color-gray-900);
}
.main-navigation {
position: fixed;
top: 0;
right: -100%;
width: 320px;
height: 100vh;
background-color: var(--color-white);
box-shadow: var(--shadow-xl);
padding: 5rem 0 1rem 0;
transition: right 0.3s ease;
overflow-y: auto;
z-index: 9999;
}
.main-navigation.active {
right: 0;
} .header-transparent .main-navigation {
background-color: var(--color-white);
}
.nav-menu {
flex-direction: column;
gap: 0;
width: 100%;
}
.nav-menu > li {
width: 100%;
position: relative;
}
.nav-menu > li > a {
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--color-gray-200);
color: var(--color-gray-700);
display: block;
width: 100%;
}
.nav-menu a::after {
display: none;
} .header-transparent .main-navigation .nav-menu a {
color: var(--color-gray-700);
}
.header-transparent .main-navigation .nav-menu a:hover {
color: var(--color-primary);
} .nav-menu .sub-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
padding: 0;
display: none;
background-color: var(--color-gray-50);
border-radius: 0;
width: 100%;
margin: 0;
}
.nav-menu .sub-menu li {
width: 100%;
}
.nav-menu .sub-menu a {
padding: 1rem 1.25rem 1rem 2rem;
font-size: 0.95rem;
border-bottom: 1px solid var(--color-gray-200);
display: block;
width: 100%;
}
.nav-menu .sub-menu li:last-child a {
border-bottom: none;
} .nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
display: none;
} .nav-menu li.submenu-open > .sub-menu {
display: block;
} .nav-menu .menu-item-has-children {
position: relative;
}
.nav-menu .menu-item-has-children > a {
padding-right: 4rem;
} .submenu-toggle {
display: flex;
position: absolute;
right: 0;
top: 0;
width: 4rem;
height: 100%;
align-items: center;
justify-content: center;
background: none;
border: none;
border-left: 1px solid var(--color-gray-200);
cursor: pointer;
transition: background-color 0.3s ease;
}
.submenu-toggle:hover {
background-color: var(--color-gray-100);
}
.submenu-toggle svg {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
color: var(--color-gray-600);
}
.menu-item-has-children.submenu-open > .submenu-toggle svg {
transform: rotate(180deg);
}
body.menu-open {
overflow: hidden;
}
}
@media (max-width: 768px) {
.header-top {
display: none;
}
.site-title {
font-size: 1.25rem;
} .site-logo {
max-width: 140px;
}
.custom-logo {
max-height: 50px;
}
.main-navigation {
width: 300px;
padding: 4rem 1rem 1rem;
}
}.hero-section-new {
position: relative;
width: 100%;
height: 900px;
overflow: hidden;
background-color: #20620c;
}
.hero-slider-new {
width: 100%;
height: 100%;
}
.hero-slide-new {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
} .hero-image-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.hero-bg-image {
width: 100%;
height: 100%;
object-fit: cover; animation: slowZoom 12s ease-in-out infinite alternate;
}
@keyframes slowZoom {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
} .hero-overlay-new {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; background: linear-gradient(135deg, rgba(32, 98, 12, 0.4) 0%, rgba(32, 98, 12, 0.5) 100%);
z-index: 1;
} .hero-leaf {
position: absolute;
z-index: 2;
opacity: 0;
pointer-events: none; animation: fadeInLeaf 1.5s ease 0.5s forwards;
}
@keyframes fadeInLeaf {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 0.7;
transform: translateY(0);
}
}
.hero-leaf-left { left: 0;
bottom: 0;
height: 400px;
width: auto;
}
.hero-leaf-right { right: 0;
bottom: 0;
height: 350px;
width: auto;
} .hero-content-new {
position: relative;
z-index: 3;
color: var(--color-white);
text-align: center;
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .hero-badge {
display: inline-block;
padding: 10px 24px;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 30px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 1px;
color: var(--color-white);
margin-bottom: 30px;
backdrop-filter: blur(5px);
background-color: rgba(255, 255, 255, 0.1);
}
.hero-title-new {
font-size: 4rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 20px;
color: var(--color-white);
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero-subtitle-new {
font-size: 2rem;
font-weight: 600;
margin-bottom: 24px;
color: var(--color-white);
text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.hero-description-new {
font-size: 1.125rem;
line-height: 1.7;
margin-bottom: 40px;
color: rgba(255, 255, 255, 0.95);
max-width: 750px;
margin-left: auto;
margin-right: auto;
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hero-buttons-new {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
} .btn-hero-primary {
padding: 16px 40px;
font-size: 1.125rem;
font-weight: 600;
background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
color: var(--color-white);
border: none;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(249, 168, 37, 0.4);
}
.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 30px rgba(249, 168, 37, 0.6);
background: linear-gradient(135deg, #fbb034 0%, #f68511 100%);
} .btn-hero-video {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 32px;
font-size: 1.125rem;
font-weight: 600;
background-color: transparent;
color: var(--color-white);
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.btn-hero-video .play-icon {
width: 40px;
height: 40px;
background-color: var(--color-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #20620c;
transition: all 0.3s ease;
}
.btn-hero-video:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: var(--color-white);
transform: translateY(-3px);
}
.btn-hero-video:hover .play-icon {
transform: scale(1.1);
} .hero-pagination {
bottom: 40px !important;
z-index: 10;
}
.hero-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 0.5);
opacity: 1;
transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
background-color: var(--color-white);
width: 40px;
border-radius: 6px;
} .hero-slider-new .swiper-button-next,
.hero-slider-new .swiper-button-prev { color: var(--color-white);
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
z-index: 10;
}
.hero-slider-new .swiper-button-next:hover,
.hero-slider-new .swiper-button-prev:hover {
background-color: rgba(124, 179, 66, 0.8);
}
.hero-slider-new .swiper-button-next::after,
.hero-slider-new .swiper-button-prev::after {
font-size: 20px;
font-weight: bold;
} .hero-section {
position: relative;
width: 100%;
height: 600px;
overflow: hidden;
}
.hero-slider {
width: 100%;
height: 100%;
}
.hero-slide {
position: relative;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(30, 90, 46, 0.85) 0%, rgba(124, 179, 66, 0.7) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
color: var(--color-white);
max-width: 700px;
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-title {
font-size: 3rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: var(--spacing-md);
color: var(--color-white);
}
.hero-subtitle {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-md);
color: var(--color-white);
}
.hero-description {
font-size: 1.125rem;
line-height: 1.6;
margin-bottom: var(--spacing-xl);
color: rgba(255, 255, 255, 0.95);
}
.hero-buttons {
display: flex;
gap: var(--spacing-md);
flex-wrap: wrap;
} .hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
color: var(--color-white);
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
background-color: var(--color-primary);
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
font-size: 20px;
}
.hero-slider .swiper-pagination {
bottom: 30px;
}
.hero-slider .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: var(--color-white);
opacity: 0.5;
transition: all 0.3s ease;
}
.hero-slider .swiper-pagination-bullet-active {
opacity: 1;
background-color: var(--color-primary);
width: 30px;
border-radius: 6px;
} .services-section {
background-color: #f5f5f5;
padding: 80px 0 100px;
overflow: hidden;
}
.services-header {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
margin-bottom: 60px;
align-items: start;
}
.services-header-left {
padding-right: 20px;
}
.services-title {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
color: #666;
margin: 0;
}
.services-header-right {
padding-left: 20px;
}
.services-description {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0;
}
.services-slider-wrapper {
position: relative;
width: 100%;
padding: 0 80px;
margin: 0 auto;
}
.services-slider {
width: 100%;
overflow: visible !important;
}
.services-slider .swiper-wrapper {
display: flex;
align-items: stretch;
}
.services-slider .swiper-slide {
width: 400px;
height: auto;
display: flex;
} .service-card {
background: #ffffff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
width: 100%;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} .service-card-image {
position: relative;
width: 100%;
height: 240px;
overflow: visible;
background-color: #e0e0e0;
}
.service-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
border-radius: 16px 16px 0 0;
}
.service-card:hover .service-card-image img {
transform: scale(1.05);
} .service-card-icon {
position: absolute;
bottom: -45px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
width: 90px;
height: 90px;
background: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
border: 3px solid rgba(255, 255, 255, 0.9);
}
.service-card-icon img {
width: 55px;
height: 55px;
object-fit: contain;
} .service-card-content {
padding: 65px 32px 32px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
flex-grow: 1;
background: #ffffff;
}
.service-card-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 16px;
color: #333;
line-height: 1.3;
text-align: center;
width: 100%;
}
.service-card-text {
font-size: 0.95rem;
line-height: 1.6;
color: #999;
margin-bottom: 24px;
text-align: center;
width: 100%;
} .service-card-content .btn {
border-top: 1px solid #e0e0e0;
padding-top: 28px;
margin-top: auto;
}  .service-card .btn {
width: 100%;
text-align: center;
padding: 14px 32px;
font-size: 1rem;
font-weight: 500;
border-radius: 8px;
transition: all 0.3s ease;
text-decoration: none;
display: block;
} .btn-service-outline {
background-color: transparent;
color: #666;
border: 1px solid #d0d0d0;
border-top: 1px solid #e0e0e0;
padding-top: 28px;
margin-top: 24px;
}
.btn-service-outline:hover {
background-color: #7cb342;
color: #ffffff;
border-color: #7cb342;
border-top-color: #7cb342;
} .btn-service-filled {
background-color: #7cb342;
color: #ffffff;
border: 1px solid #7cb342;
border-top: 1px solid #e0e0e0;
padding-top: 28px;
margin-top: 24px;
}
.btn-service-filled:hover {
background-color: #6da036;
border-color: #6da036;
border-top-color: #6da036;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}
.services-button-prev,
.services-button-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
transition: all 0.3s ease;
color: #333;
z-index: 10;
}
.services-button-prev {
left: 10px;
}
.services-button-next {
right: 10px;
}
.services-button-prev:hover,
.services-button-next:hover {
background: #7cb342;
color: #ffffff;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}
.services-button-prev.swiper-button-disabled,
.services-button-next.swiper-button-disabled {
opacity: 0.3;
cursor: not-allowed;
pointer-events: none;
} .animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}
.animate-on-scroll.animate-in {
opacity: 1;
transform: translateY(0);
} .trust-sustainability-section {
padding: 100px 0;
background-color: #ffffff;
}
.trust-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
} .trust-left {
display: flex;
flex-direction: column;
gap: 40px;
}
.trust-main-title {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
color: #666;
margin: 0;
}
.trust-badges {
display: flex;
gap: 30px;
align-items: center;
}
.trust-badge {
height: 80px;
width: auto;
object-fit: contain;
}
.trust-image-wrapper {
position: relative;
width: 100%;
border-radius: 12px;
overflow: hidden;
}
.trust-image {
width: 100%;
height: auto;
display: block;
border-radius: 12px;
} .stat-boxes {
position: relative;
bottom: 72px;
left: 30px;
display: flex;
gap: 20px;
}
.stat-box {
padding: 30px 40px;
border-radius: 8px;
color: #ffffff;
min-width: 160px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.stat-box-green {
background-color: #7cb342;
}
.stat-box-blue {
background-color: #2c5282;
}
.stat-box .stat-number {
font-size: 3.5rem;
font-weight: 700;
line-height: 1;
margin-bottom: 8px;
color: #ffffff;
}
.stat-box .stat-number::before {
content: "+";
}
.stat-box .stat-label {
font-size: 1.125rem;
font-weight: 500;
color: #ffffff;
opacity: 0.95;
} .trust-right {
display: flex;
flex-direction: column;
gap: 30px;
}
.trust-top-image {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
}
.trust-description {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0;
}
.trust-features {
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 10px;
}
.trust-feature {
display: flex;
gap: 20px;
align-items: start;
}
.trust-feature-icon {
width: 60px;
height: 60px;
flex-shrink: 0;
object-fit: contain;
}
.trust-feature-content {
flex: 1;
}
.trust-feature-title {
font-size: 1.25rem;
font-weight: 600;
color: #333;
margin: 0 0 12px 0;
}
.trust-feature-text {
font-size: 0.95rem;
line-height: 1.6;
color: #666;
margin: 0;
}
.btn-trust-cta {
display: inline-block;
padding: 16px 48px;
background-color: #2c5282;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
align-self: flex-start;
margin-top: 10px;
}
.btn-trust-cta:hover {
background-color: #1e3a5f;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
} @media (max-width: 1024px) {
.trust-sustainability-section {
padding: 80px 0;
}
.trust-grid {
gap: 60px;
}
.trust-main-title {
font-size: 2rem;
}
.stat-boxes {
bottom: 20px;
left: 20px;
gap: 15px;
}
.stat-box {
padding: 25px 30px;
min-width: 140px;
}
.stat-box .stat-number {
font-size: 3rem;
}
.stat-box .stat-label {
font-size: 1rem;
}
}
@media (max-width: 768px) {
.trust-sustainability-section {
padding: 60px 0;
}
.trust-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.trust-main-title {
font-size: 1.75rem;
}
.trust-badges {
gap: 20px;
flex-wrap: wrap;
}
.trust-badge {
height: 60px;
}
.stat-boxes {
position: relative;
bottom: 72px;
left: 30px;
flex-wrap: wrap;
}
.stat-box {
padding: 20px 30px;
min-width: 130px;
}
.stat-box .stat-number {
font-size: 2.5rem;
}
.trust-feature-icon {
width: 50px;
height: 50px;
}
.trust-feature-title {
font-size: 1.125rem;
}
.trust-feature-text {
font-size: 0.9rem;
}
.btn-trust-cta {
width: 100%;
text-align: center;
}
}
@media (max-width: 480px) {
.trust-main-title {
font-size: 1.5rem;
}
.stat-boxes {
flex-direction: column;
gap: 12px;
}
.stat-box {
width: 100%;
text-align: center;
}
.trust-feature {
flex-direction: column;
align-items: center;
text-align: center;
}
} .trust-competence-section {
padding: 100px 0;
}
.trust-top-row {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 40px;
align-items: start;
margin-bottom: 80px;
} .trust-google {
display: flex;
align-items: flex-start;
justify-content: center;
}
.google-reviews-image {
width: 100%;
max-width: 200px;
height: auto;
object-fit: contain;
} .trust-text-center {
padding: 0 20px;
text-align: center;
}
.trust-competence-title {
font-size: 2.25rem;
font-weight: 600;
line-height: 1.2;
color: #333;
margin: 0 0 30px 0;
}
.trust-competence-text {
font-size: 0.95rem;
line-height: 1.7;
color: #666;
margin: 0 0 20px 0;
}
.trust-competence-text:last-child {
margin-bottom: 0;
} .trust-hand-wrapper {
position: relative;
display: flex;
justify-content: flex-end;
align-items: flex-start; opacity: 0;
transform: translateX(100px);
transition: all 1s ease;
}
.trust-hand-wrapper.animate-in {
opacity: 1;
transform: translateX(0);
}
.trust-hand-image {
width: 100%;
max-width: 350px;
height: auto;
object-fit: contain; margin-left: auto;
} .product-slider-wrapper {
margin-bottom: 60px;
overflow: hidden;
}
.product-slider {
width: 100%;
}
.product-slider .swiper-wrapper {
display: flex;
align-items: center;
}
.product-slider .swiper-slide {
width: auto;
height: auto;
}
.product-item {
display: block;
border-radius: 12px;
transition: all 0.3s ease;
}
.product-item:hover {
transform: translateY(-8px);
}
.product-item img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
} .trust-cta-wrapper {
text-align: center;
}
.btn-trust-quote {
display: inline-block;
padding: 18px 60px;
background-color: #2c5282;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(44, 82, 130, 0.3);
}
.btn-trust-quote:hover {
background-color: #1e3a5f;
transform: translateY(-3px);
box-shadow: 0 6px 30px rgba(44, 82, 130, 0.4);
} @media (max-width: 1024px) {
.trust-competence-section {
padding: 80px 0;
}
.trust-top-row {
gap: 30px;
margin-bottom: 60px;
}
.trust-competence-title {
font-size: 2rem;
}
.trust-hand-image {
max-width: 300px;
}
.product-item img {
width: 100%;
height: auto;
}
}
@media (max-width: 768px) {
.trust-competence-section {
padding: 60px 0;
}
.trust-top-row {
grid-template-columns: 1fr;
gap: 40px;
margin-bottom: 50px;
}
.trust-google {
justify-content: flex-start;
}
.google-reviews-image {
max-width: 180px;
}
.trust-text-center {
padding: 0;
text-align: center;
}
.trust-competence-title {
font-size: 1.75rem;
}
.trust-competence-text {
font-size: 0.9rem;
}
.trust-hand-wrapper {
justify-content: center; transform: translateX(50px);
}
.trust-hand-image {
max-width: 280px;
}
.product-item img {
width: 100%;
height: auto;
}
.btn-trust-quote {
width: 100%;
max-width: 400px;
}
}
@media (max-width: 480px) {
.trust-competence-title {
font-size: 1.5rem;
}
.trust-competence-text {
font-size: 0.875rem;
}
.google-reviews-image {
max-width: 150px;
}
.trust-hand-image {
max-width: 250px;
}
.product-item {
padding: 15px;
}
.product-item img {
width: 100%;
height: auto;
}
} .map-section {
padding: 100px 0;
background-color: #ffffff;
} .map-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
} .map-text {
padding-right: 20px;
}
.map-title {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
color: #333;
margin: 0 0 30px 0;
}
.map-description {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0 0 20px 0;
}
.map-description:last-child {
margin-bottom: 0;
} .map-iframe-wrapper {
padding-left: 20px;
}
.map-iframe-wrapper iframe {
width: 100%;
height: 480px;
border: none;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} @media (max-width: 1024px) {
.map-section {
padding: 80px 0;
}
.map-grid {
gap: 40px;
}
.map-title {
font-size: 2rem;
}
.map-iframe-wrapper iframe {
height: 400px;
}
}
@media (max-width: 768px) {
.map-section {
padding: 60px 0;
} .map-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.map-text,
.map-iframe-wrapper {
padding: 0;
}
.map-title {
font-size: 1.75rem;
}
.map-description {
font-size: 0.95rem;
}
.map-iframe-wrapper iframe {
height: 350px;
}
}
@media (max-width: 480px) {
.map-section {
padding: 50px 0;
}
.map-title {
font-size: 1.5rem;
}
.map-description {
font-size: 0.875rem;
}
.map-iframe-wrapper iframe {
height: 300px;
}
} .cta-section {
position: relative;
padding: var(--spacing-3xl) 0;
overflow: hidden;
min-height: 400px;
display: flex;
align-items: center;
}
.cta-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center;
z-index: 0;
}
.cta-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(44, 82, 130, 0) 100%);
z-index: 1;
}
.cta-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--color-white);
max-width: 800px;
margin: 0 auto;
}
.cta-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--color-white);
line-height: 1.2;
}
.cta-text {
font-size: 1.25rem;
margin-bottom: var(--spacing-xl);
color: rgba(255, 255, 255, 0.95);
}
.cta-buttons {
display: flex;
gap: var(--spacing-md);
justify-content: center;
flex-wrap: wrap;
} @media (max-width: 1024px) { .hero-section-new {
height: 100vh;
}
.hero-title-new {
font-size: 3rem;
}
.hero-subtitle-new {
font-size: 1.5rem;
}
.hero-description-new {
font-size: 1rem;
}
.hero-leaf-left,
.hero-leaf-right {
height: 300px;
}
.hero-section {
height: 500px;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.25rem;
} .services-section {
padding: 60px 0 80px;
}
.services-header {
grid-template-columns: 1fr;
gap: 30px;
margin-bottom: 50px;
}
.services-header-left,
.services-header-right {
padding: 0;
}
.services-title {
font-size: 2rem;
}
.services-slider-wrapper {
padding: 0 60px;
}
.services-slider .swiper-slide {
width: 350px;
}
.services-button-prev,
.services-button-next {
width: 45px;
height: 45px;
}
.cta-title {
font-size: 2rem;
}
.cta-text {
font-size: 1.125rem;
}
}
@media (max-width: 768px) { .hero-section-new {
height: 100vh;
}
.hero-title-new {
font-size: 2.25rem;
}
.hero-subtitle-new {
font-size: 1.25rem;
}
.hero-description-new {
font-size: 0.95rem;
}
.hero-badge {
font-size: 0.75rem;
padding: 8px 20px;
}
.hero-leaf-left,
.hero-leaf-right {
height: 250px;
}
.hero-section {
height: 450px;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.125rem;
}
.hero-description {
font-size: 1rem;
}
.services-section {
padding: 50px 0 70px;
}
.services-header {
gap: 20px;
margin-bottom: 40px;
}
.services-title {
font-size: 1.75rem;
}
.services-description {
font-size: 0.95rem;
}
.services-slider-wrapper {
padding: 0 50px;
}
.services-slider .swiper-slide {
width: calc(100vw - 100px);
}
.services-button-prev,
.services-button-next {
width: 40px;
height: 40px;
}
.cta-section {
padding: var(--spacing-2xl) 0;
}
.cta-title {
font-size: 1.75rem;
}
.cta-text {
font-size: 1rem;
}
}
@media (max-width: 480px) { .hero-section-new {
height: 100vh;
}
.hero-title-new {
font-size: 1.875rem;
}
.hero-subtitle-new {
font-size: 1.125rem;
}
.hero-description-new {
font-size: 0.875rem;
}
.hero-buttons-new {
flex-direction: column;
width: 100%;
}
.btn-hero-primary,
.btn-hero-video {
width: 100%;
justify-content: center;
}
.hero-leaf-left,
.hero-leaf-right {
height: 200px;
}
.services-title {
font-size: 1.5rem;
}
.services-slider .swiper-slide {
width: calc(100vw - 80px);
}
.services-slider-wrapper {
padding: 0 40px;
}
.services-button-prev,
.services-button-next {
width: 40px;
height: 40px;
}
.cta-title {
font-size: 1.5rem;
}
.cta-text {
font-size: 0.95rem;
}
} .testimonials-section {
padding: 100px 0;
background-color: #f5f5f5;
} .testimonials-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 60px;
align-items: start;
}
.testimonials-header-left {
padding-right: 20px;
}
.testimonials-title {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
color: #333;
margin: 0;
}
.testimonials-header-right {
padding-left: 20px;
}
.testimonials-intro {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0;
} .testimonial-featured {
margin-bottom: 60px;
}
.testimonial-featured-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.testimonial-video-wrapper {
width: 100%;
}
.video-embed-container {
position: relative;
padding-bottom: 56.25%; height: 0;
overflow: hidden;
border-radius: 12px;
}
.video-embed-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.testimonial-featured-content {
display: flex;
flex-direction: column;
justify-content: center;
}
.quote-icon {
color: #333 !important;
margin-bottom: 20px;
}
.testimonial-featured-title {
font-size: 1.75rem;
font-weight: 600;
color: #333;
margin: 0 0 20px 0;
line-height: 1.3;
}
.testimonial-featured-text {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0 0 20px 0;
}
.testimonial-author {
font-size: 0.95rem;
font-weight: 600;
color: #333;
margin: 0;
} .testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 60px;
}
.testimonial-card {
padding: 0 !important;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
}
.testimonial-card-video {
width: 100%;
}
.quote-icon-small {
color: #333 !important;
margin-top: 25px;
margin-bottom: 15px;
}
.testimonial-card-title {
font-size: 1.25rem;
font-weight: 600;
color: #333;
margin: 0 0 15px 0;
line-height: 1.3;
}
.testimonial-card-text {
font-size: 0.95rem;
line-height: 1.6;
color: #666;
margin: 0 0 15px 0;
}
.testimonial-card-author {
font-size: 0.9rem;
font-weight: 600;
color: #333;
margin: 0;
} .google-reviews-slider-wrapper {
padding-top: 60px !important;
position: relative;
padding: 0 60px;
}
.google-reviews-slider {
overflow: hidden;
}
.google-review-card {
background-color: #ffffff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
height: 100%;
display: flex;
flex-direction: column;
}
.review-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.review-avatar {
flex-shrink: 0;
}
.avatar-circle {
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 1.25rem;
font-weight: 600;
}
.review-info {
flex: 1;
}
.review-name {
font-size: 1rem;
font-weight: 600;
color: #333;
margin: 0 0 5px 0;
}
.google-logo-small {
height: 16px;
width: auto;
}
.review-stars {
display: flex;
align-items: center;
gap: 3px;
margin-bottom: 15px;
}
.star {
color: #ffc107;
font-size: 1.25rem;
}
.verified-badge {
color: #4caf50;
font-size: 1rem;
margin-left: 8px;
}
.review-text {
font-size: 0.95rem;
line-height: 1.6;
color: #666;
margin: 0 0 10px 0;
flex: 1;
}
.review-link {
font-size: 0.9rem;
color: #4caf50;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.review-link:hover {
color: #388e3c;
} .reviews-button-prev,
.reviews-button-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
background-color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
z-index: 10;
color: #333;
}
.reviews-button-prev {
left: 0;
}
.reviews-button-next {
right: 0;
}
.reviews-button-prev:hover,
.reviews-button-next:hover {
background-color: #4caf50;
color: #ffffff;
box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
} @media (max-width: 1024px) {
.testimonials-header {
gap: 40px;
}
.testimonial-featured-grid {
gap: 40px;
padding: 30px;
}
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.testimonials-section {
padding: 60px 0;
}
.testimonials-header {
grid-template-columns: 1fr;
gap: 30px;
margin-bottom: 40px;
}
.testimonials-header-left,
.testimonials-header-right {
padding: 0;
}
.testimonials-title {
font-size: 2rem;
}
.testimonial-featured-grid {
grid-template-columns: 1fr;
gap: 30px;
padding: 25px;
}
.testimonial-featured-title {
font-size: 1.5rem;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.google-reviews-slider-wrapper {
padding: 0 50px;
}
.reviews-button-prev,
.reviews-button-next {
width: 36px;
height: 36px;
}
}
@media (max-width: 480px) {
.testimonials-title {
font-size: 1.75rem;
}
.testimonial-featured-grid {
padding: 20px;
}
.testimonial-card-content {
padding: 20px;
}
.google-reviews-slider-wrapper {
padding: 0 40px;
}
} .btn-trust-quote {
display: inline-block;
padding: 16px 48px;
background-color: #7cb342;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(124, 179, 66, 0.3);
}
.btn-trust-quote:hover {
background-color: #6da036;
transform: translateY(-3px);
box-shadow: 0 6px 30px rgba(124, 179, 66, 0.4);
} .steps-section {
padding: 100px 0;
background-color: #f5f5f5;
overflow: hidden;
}
.steps-header {
text-align: center;
max-width: 900px;
margin: 0 auto 80px;
}
.steps-main-title {
font-size: 2.75rem;
font-weight: 600;
line-height: 1.2;
color: #333;
margin: 0 0 30px 0;
}
.steps-intro {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0 0 20px 0;
}
.btn-steps-cta {
display: inline-block;
padding: 16px 48px;
background-color: #7cb342;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
margin-top: 20px;
box-shadow: 0 4px 20px rgba(124, 179, 66, 0.3);
}
.btn-steps-cta:hover {
background-color: #6da036;
transform: translateY(-3px);
box-shadow: 0 6px 30px rgba(124, 179, 66, 0.4);
}
.steps-container {
position: relative;
max-width: 1400px;
margin: 0 auto;
}
.step-item {
position: relative;
margin-bottom: 60px;
opacity: 0;
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-item.step-left {
transform: translateX(-100px);
}
.step-item.step-right {
transform: translateX(100px);
}
.step-item.animate-in {
opacity: 1;
transform: translateX(0);
}
.step-content {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 40px;
align-items: center;
}
.step-left .step-content {
grid-template-areas: "text circle image";
}
.step-left .step-text-box {
grid-area: text;
text-align: left;
}
.step-left .step-number-circle {
grid-area: circle;
}
.step-left .step-image-wrapper {
grid-area: image;
}
.step-right .step-content {
grid-template-areas: "image circle text";
}
.step-right .step-text-box {
grid-area: text;
text-align: left;
}
.step-right .step-number-circle {
grid-area: circle;
}
.step-right .step-image-wrapper {
grid-area: image;
} .step-text-box {
position: relative;
padding: 40px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} .step-left .step-text-box::after {
content: "";
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-left: 20px solid #ffffff;
} .step-right .step-text-box::after {
content: "";
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-right: 20px solid #ffffff;
}
.step-title {
font-size: 1.5rem;
font-weight: 600;
color: #333;
margin: 0 0 15px 0;
line-height: 1.3;
}
.step-description {
font-size: 1rem;
line-height: 1.7;
color: #666;
margin: 0;
}
.step-number-circle {
width: 90px;
height: 90px;
background-color: #7cb342;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
}
.step-number {
}
.step-number-mobile {
display: none;
}
.step-image-wrapper {
position: relative;
width: 100%;
border-radius: 12px;
overflow: hidden;
}
.step-image {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
border-radius: 12px;
}
.step-arrow {
position: absolute;
bottom: -50px;
z-index: 5;
opacity: 0.7;
}
.step-arrow-right {
right: 45%;
}
.step-arrow-left {
left: 45%;
}
.step-item:last-child .step-arrow {
display: none;
} @media (max-width: 768px) {
.steps-section {
padding: 60px 0;
}
.steps-main-title {
font-size: 2rem;
}
.step-content {
grid-template-columns: 1fr !important;
grid-template-areas: "image" "text" !important;
gap: 20px;
}
.step-number-circle {
display: none;
}
.step-number-mobile {
display: flex;
position: absolute;
top: 20px;
right: 20px;
width: 70px;
height: 70px;
background-color: #7cb342;
border-radius: 50%;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
color: #ffffff;
line-height: 1;
box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
z-index: 10;
}
.step-text-box {
padding: 30px;
} .step-left .step-text-box::after,
.step-right .step-text-box::after {
display: none;
}
.step-arrow {
display: none;
}
.step-item {
margin-bottom: 40px;
}
.step-item.step-left,
.step-item.step-right {
transform: translateY(50px);
}
.step-item.animate-in {
transform: translateY(0);
}
} .pv-step-form-section {
padding: 80px 20px;
min-height: 100vh;
}
.pv-step-container {
max-width: 1200px;
margin: 0 auto;
} .pv-step-header {
text-align: center;
margin-bottom: 60px;
}
.pv-step-main-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 16px;
line-height: 1.2;
}
.pv-step-subtitle {
font-size: 1.125rem;
color: #666;
max-width: 600px;
margin: 0 auto;
} .pv-step-progress-wrapper {
margin-bottom: 50px;
}
.pv-step-progress-bar {
height: 8px;
background-color: #e0e0e0;
border-radius: 10px;
overflow: hidden;
margin-bottom: 30px;
position: relative;
}
.pv-step-progress-fill {
height: 100%;
background: linear-gradient(90deg, #7cb342 0%, #9ccc65 100%);
border-radius: 10px;
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
width: 25%;
box-shadow: 0 0 10px rgba(124, 179, 66, 0.4);
}
.pv-step-indicators {
display: flex;
justify-content: space-between;
gap: 20px;
}
.pv-step-indicator {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
opacity: 0.5;
transition: all 0.3s ease;
}
.pv-step-indicator.pv-step-active {
opacity: 1;
}
.pv-step-indicator-circle {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
font-weight: 700;
color: #666;
transition: all 0.3s ease;
position: relative;
}
.pv-step-indicator.pv-step-active .pv-step-indicator-circle {
background-color: #7cb342;
color: white;
transform: scale(1.1);
box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
}
.pv-step-indicator.pv-step-completed .pv-step-indicator-circle {
background-color: #7cb342;
color: white;
}
.pv-step-indicator.pv-step-completed .pv-step-indicator-circle::after {
content: "✓";
position: absolute;
font-size: 1.5rem;
}
.pv-step-indicator-label {
font-size: 0.875rem;
font-weight: 600;
color: #666;
text-align: center;
transition: color 0.3s ease;
}
.pv-step-indicator.pv-step-active .pv-step-indicator-label {
color: #7cb342;
} .pv-step-form {
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
}
.pv-step-content {
display: none;
animation: pvFadeSlideIn 0.5s ease;
}
.pv-step-content.pv-step-active {
display: block;
}
@keyframes pvFadeSlideIn {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.pv-step-content-header {
margin-bottom: 40px;
text-align: center;
}
.pv-step-number-badge {
display: inline-block;
font-size: 0.875rem;
font-weight: 700;
color: #7cb342;
background-color: rgba(124, 179, 66, 0.1);
padding: 8px 20px;
border-radius: 20px;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.pv-step-content-title {
font-size: 2rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 12px;
}
.pv-step-content-description {
font-size: 1rem;
color: #666;
} .pv-step-form-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.pv-step-form-group {
display: flex;
flex-direction: column;
}
.pv-step-form-group.pv-step-full-width {
grid-column: 1 / -1;
}
.pv-step-label {
font-size: 0.9375rem;
font-weight: 600;
color: #333;
margin-bottom: 8px;
display: block;
}
.pv-step-input,
.pv-step-textarea {
width: 100%;
padding: 14px 18px;
font-size: 1rem;
color: #333;
background-color: #f8f9fa;
border: 2px solid transparent;
border-radius: 12px;
transition: all 0.3s ease;
font-family: inherit;
}
.pv-step-input:focus,
.pv-step-textarea:focus {
outline: none;
background-color: white;
border-color: #7cb342;
box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.1);
}
.pv-step-input::placeholder,
.pv-step-textarea::placeholder {
color: #999;
}
.pv-step-textarea {
resize: vertical;
min-height: 100px;
}
.pv-step-hint {
font-size: 0.8125rem;
color: #999;
margin-top: 6px;
display: block;
} .pv-step-radio-group {
display: flex;
flex-direction: column;
gap: 12px;
}
.pv-step-radio-label {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 18px;
background-color: #f8f9fa;
border: 2px solid transparent;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.9375rem;
color: #333;
}
.pv-step-radio-label:hover {
background-color: #f0f0f0;
}
.pv-step-radio {
display: none;
}
.pv-step-radio-custom {
width: 22px;
height: 22px;
border: 2px solid #ccc;
border-radius: 50%;
position: relative;
transition: all 0.3s ease;
flex-shrink: 0;
}
.pv-step-radio:checked + .pv-step-radio-custom {
border-color: #7cb342;
background-color: #7cb342;
}
.pv-step-radio:checked + .pv-step-radio-custom::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 8px;
height: 8px;
background-color: white;
border-radius: 50%;
}
.pv-step-radio:checked ~ .pv-step-radio-label {
background-color: rgba(124, 179, 66, 0.05);
border-color: #7cb342;
} .pv-step-checkbox-label {
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
font-size: 0.9375rem;
color: #333;
line-height: 1.6;
}
.pv-step-checkbox {
display: none;
}
.pv-step-checkbox-custom {
width: 22px;
height: 22px;
border: 2px solid #ccc;
border-radius: 6px;
position: relative;
transition: all 0.3s ease;
flex-shrink: 0;
margin-top: 2px;
}
.pv-step-checkbox:checked + .pv-step-checkbox-custom {
border-color: #7cb342;
background-color: #7cb342;
}
.pv-step-checkbox:checked + .pv-step-checkbox-custom::after {
content: "";
position: absolute;
top: 2px;
left: 6px;
width: 6px;
height: 12px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.pv-step-link {
color: #7cb342;
text-decoration: underline;
transition: color 0.3s ease;
}
.pv-step-link:hover {
color: #689f38;
} .pv-step-navigation {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid #e0e0e0;
}
.pv-step-btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 32px;
font-size: 1rem;
font-weight: 600;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}
.pv-step-btn-icon {
transition: transform 0.3s ease;
}
.pv-step-btn-primary {
background-color: #7cb342;
color: white;
box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
margin-left: auto;
}
.pv-step-btn-primary:hover {
background-color: #689f38;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}
.pv-step-btn-primary:hover .pv-step-btn-icon {
transform: translateX(4px);
}
.pv-step-btn-primary:active {
transform: translateY(0);
}
.pv-step-btn-secondary {
background-color: #f8f9fa;
color: #333;
border: 2px solid #e0e0e0;
}
.pv-step-btn-secondary:hover {
background-color: #e9ecef;
border-color: #ccc;
}
.pv-step-btn-secondary:hover .pv-step-btn-icon {
transform: translateX(-4px);
}
.pv-step-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
} .pv-step-success {
text-align: center;
padding: 60px 40px;
animation: pvFadeSlideIn 0.6s ease;
}
.pv-step-success-icon {
margin-bottom: 30px;
animation: pvScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pvScaleIn {
from {
opacity: 0;
transform: scale(0.5);
}
to {
opacity: 1;
transform: scale(1);
}
}
.pv-step-success-title {
font-size: 2rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 16px;
}
.pv-step-success-text {
font-size: 1.125rem;
color: #666;
max-width: 500px;
margin: 0 auto;
line-height: 1.6;
} @media (max-width: 768px) {
.pv-step-form-section {
padding: 40px 16px;
}
.pv-step-main-title {
font-size: 1.875rem;
}
.pv-step-subtitle {
font-size: 1rem;
}
.pv-step-indicators {
gap: 8px;
}
.pv-step-indicator-circle {
width: 40px;
height: 40px;
font-size: 1rem;
}
.pv-step-indicator-label {
font-size: 0.75rem;
}
.pv-step-form {
padding: 30px 20px;
border-radius: 16px;
}
.pv-step-content-title {
font-size: 1.5rem;
}
.pv-step-form-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.pv-step-navigation {
flex-direction: column-reverse;
}
.pv-step-btn {
width: 100%;
justify-content: center;
}
.pv-step-btn-primary {
margin-left: 0;
}
.pv-step-success {
padding: 40px 20px;
}
.pv-step-success-title {
font-size: 1.5rem;
}
.pv-step-success-text {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.pv-step-indicator-label {
display: none;
}
.pv-step-main-title {
font-size: 1.5rem;
}
.pv-step-content-title {
font-size: 1.25rem;
}
} .blog-preview-section {
}
.blog-preview-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.blog-preview-header {
text-align: center;
margin-bottom: 50px;
}
.blog-preview-header h2 {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 15px;
}
.blog-preview-header p {
font-size: 1.1rem;
color: #666;
max-width: 600px;
margin: 0 auto;
}
.blog-preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.blog-preview-card {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}
.blog-preview-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.blog-preview-image {
width: 100%;
height: 220px;
overflow: hidden;
background: #e9ecef;
position: relative;
}
.blog-preview-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.blog-preview-card:hover .blog-preview-image img {
transform: scale(1.05);
}
.blog-preview-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.blog-preview-meta {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 0.85rem;
}
.blog-preview-category {
background: #e8f5e9;
color: #2e7d32;
padding: 4px 12px;
border-radius: 4px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.blog-preview-date {
color: #999;
}
.blog-preview-title {
font-size: 1.3rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 12px;
line-height: 1.4;
}
.blog-preview-title a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease;
}
.blog-preview-title a:hover {
color: #2e7d32;
}
.blog-preview-excerpt {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
flex: 1;
}
.blog-preview-link {
display: inline-flex;
align-items: center;
color: #2e7d32;
font-weight: 600;
text-decoration: none;
transition: gap 0.2s ease;
gap: 5px;
}
.blog-preview-link:hover {
gap: 10px;
}
.blog-preview-link::after {
content: "→";
font-size: 1.2rem;
}
.blog-preview-footer {
text-align: center;
}
.blog-preview-button {
display: inline-block;
padding: 14px 32px;
background: #2e7d32;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
transition: background 0.3s ease, transform 0.2s ease;
}
.blog-preview-button:hover {
background: #1b5e20;
transform: translateY(-2px);
} @media (max-width: 768px) {
.blog-preview-section {
padding: 60px 0;
}
.blog-preview-header h2 {
font-size: 2rem;
}
.blog-preview-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.blog-preview-image {
height: 200px;
}
} .blog-preview-section {
}
.blog-preview-header {
text-align: center;
margin-bottom: 60px;
}
.blog-preview-title {
font-size: 2.5rem;
font-weight: 600;
color: #333;
margin-bottom: 15px;
}
.blog-preview-subtitle {
font-size: 1.125rem;
color: #666;
max-width: 600px;
margin: 0 auto;
} .blog-preview-list {
display: flex;
flex-direction: column;
gap: 40px;
margin-bottom: 50px;
} .blog-preview-item {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
align-items: start;
}
.blog-preview-item:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
transform: translateY(-5px);
} .blog-preview-item-image {
width: 100%;
height: 100%;
min-height: 280px;
overflow: hidden;
background: #f0f0f0;
border-radius: 12px 0 0 12px;
}
.blog-preview-item-image a {
display: block;
height: 100%;
}
.blog-preview-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.blog-preview-item:hover .blog-preview-item-image img {
transform: scale(1.08);
} .blog-preview-item-content {
padding: 30px 30px 30px 0;
display: flex;
flex-direction: column;
justify-content: center;
}
.blog-preview-item-meta {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.blog-preview-category {
background: #e8f5e9;
color: #2e7d32;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.blog-preview-date {
color: #999;
font-size: 0.9rem;
}
.blog-preview-item-title {
font-size: 1.75rem;
font-weight: 600;
color: #333;
margin-bottom: 15px;
line-height: 1.3;
}
.blog-preview-item-title a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.blog-preview-item-title a:hover {
color: #7cb342;
}
.blog-preview-excerpt {
color: #666;
font-size: 1rem;
line-height: 1.7;
margin-bottom: 20px;
}
.blog-preview-read-more {
display: inline-flex;
align-items: center;
color: #7cb342;
font-weight: 600;
text-decoration: none;
transition: gap 0.3s ease;
gap: 8px;
font-size: 1rem;
}
.blog-preview-read-more:hover {
gap: 12px;
}
.blog-preview-cta {
text-align: center;
}
.blog-preview-empty {
text-align: center;
color: #999;
font-size: 1.125rem;
padding: 40px 0;
} @media (max-width: 1024px) {
.blog-preview-item {
gap: 30px;
}
.blog-preview-item-content {
padding: 25px 25px 25px 0;
}
.blog-preview-item-title {
font-size: 1.5rem;
}
}
@media (max-width: 768px) {
.blog-preview-section {
padding: 60px 0;
}
.blog-preview-title {
font-size: 2rem;
}
.blog-preview-list {
gap: 30px;
} .blog-preview-item {
grid-template-columns: 1fr;
gap: 0;
}
.blog-preview-item-image {
min-height: 220px;
border-radius: 12px 12px 0 0;
}
.blog-preview-item-content {
padding: 25px;
}
.blog-preview-item-title {
font-size: 1.35rem;
}
} .video-embed-container.yt-facade {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
padding-bottom: 0;
height: auto;
overflow: hidden;
border-radius: 12px;
cursor: pointer;
background: #000;
}
.yt-facade .yt-facade-thumb {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
border: none;
display: block;
}
.yt-facade .yt-facade-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 68px;
height: 48px;
padding: 0;
border: none;
background: transparent;
cursor: pointer;
transition: transform 0.2s ease, opacity 0.2s ease;
z-index: 2;
}
.yt-facade .yt-facade-btn svg { display: block; width: 100%; height: 100%; }
.yt-facade:hover .yt-facade-btn { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade .yt-facade-btn:focus-visible { outline: 3px solid #7cb342; outline-offset: 4px; }
.yt-facade iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: none;
}.blog-post-card {
background-color: var(--color-white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.blog-post-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.post-thumbnail {
overflow: hidden;
position: relative;
padding-bottom: 60%;
}
.post-thumbnail img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.blog-post-card:hover .post-thumbnail img {
transform: scale(1.1);
}
.post-content {
padding: var(--spacing-lg);
flex-grow: 1;
display: flex;
flex-direction: column;
}
.entry-meta {
display: flex;
gap: var(--spacing-md);
font-size: 0.875rem;
color: var(--color-gray-600);
margin-bottom: var(--spacing-sm);
flex-wrap: wrap;
}
.entry-title {
font-size: 1.5rem;
margin-bottom: var(--spacing-md);
line-height: 1.3;
}
.entry-title a {
color: var(--color-gray-900);
text-decoration: none;
transition: color 0.3s ease;
}
.entry-title a:hover {
color: var(--color-primary);
}
.entry-content {
flex-grow: 1;
margin-bottom: var(--spacing-md);
}
.read-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--color-primary);
font-weight: 600;
text-decoration: none;
transition: gap 0.3s ease;
}
.read-more:hover {
gap: 0.75rem;
}
.entry-meta-footer {
display: flex;
gap: var(--spacing-md);
padding-top: var(--spacing-md);
border-top: 1px solid var(--color-gray-200);
font-size: 0.875rem;
color: var(--color-gray-600);
} .testimonials-section {
padding: var(--spacing-3xl) 0;
}
.testimonials-featured {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: center;
margin-bottom: var(--spacing-3xl);
background-color: var(--color-white);
border-radius: var(--radius-lg);
padding: var(--spacing-2xl);
box-shadow: var(--shadow-lg);
}
.testimonial-featured-image {
border-radius: var(--radius-lg);
overflow: hidden;
}
.testimonial-featured-image img {
width: 100%;
height: auto;
display: block;
}
.quote-icon {
color: var(--color-primary);
margin-bottom: var(--spacing-md);
opacity: 0.3;
}
.testimonial-text {
margin: 0 0 var(--spacing-lg) 0;
}
.testimonial-text p {
font-size: 1.25rem;
line-height: 1.6;
color: var(--color-gray-700);
font-style: italic;
}
.testimonial-author {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.testimonial-author strong {
font-size: 1.125rem;
color: var(--color-gray-900);
}
.testimonial-author span {
font-size: 0.875rem;
color: var(--color-gray-600);
}
.testimonials-grid {
gap: var(--spacing-xl);
}
.testimonial-card {
padding: var(--spacing-xl);
text-align: center;
}
.testimonial-image {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto var(--spacing-md);
border: 3px solid var(--color-primary);
}
.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.quote-icon-small {
color: var(--color-primary);
margin-bottom: var(--spacing-sm);
opacity: 0.3;
display: flex;
justify-content: center;
}
.testimonial-card .testimonial-text p {
font-size: 1rem;
margin-bottom: var(--spacing-md);
} .process-section {
background-color: var(--color-white);
padding: var(--spacing-3xl) 0;
}
.process-steps {
max-width: 1000px;
margin: 0 auto;
}
.process-step {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: center;
margin-bottom: var(--spacing-3xl);
position: relative;
}
.process-step-reverse {
direction: rtl;
}
.process-step-reverse > * {
direction: ltr;
}
.step-content {
padding: var(--spacing-xl);
}
.step-number {
display: flex;
position: absolute;
width: 70px;
height: 70px;
background-color: #7cb342;
border-radius: 50%;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
color: #ffffff;
line-height: 1;
box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
z-index: 10;
}
.step-title {
font-size: 1.5rem;
margin-bottom: var(--spacing-md);
color: var(--color-gray-900);
}
.step-description {
font-size: 1rem;
line-height: 1.6;
color: var(--color-gray-600);
margin-bottom: var(--spacing-md);
}
.step-features {
list-style: none;
padding: 0;
margin: 0;
}
.step-features li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--color-gray-700);
}
.step-features li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--color-primary);
font-weight: 700;
}
.step-image {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.step-image img {
width: 100%;
height: auto;
display: block;
}
.step-connector {
position: absolute;
left: 50%;
bottom: -3rem;
transform: translateX(-50%);
z-index: 10;
}
.process-step:last-child .step-connector {
display: none;
}
.process-cta {
text-align: center;
margin-top: var(--spacing-2xl);
}
.btn-large {
padding: 1rem 3rem;
font-size: 1.125rem;
} .no-results {
text-align: center;
padding: var(--spacing-3xl) 0;
}
.no-results .page-header {
margin-bottom: var(--spacing-xl);
}
.no-results .page-content {
max-width: 600px;
margin: 0 auto;
} @media (max-width: 1024px) {
.testimonials-featured {
grid-template-columns: 1fr;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
.process-step,
.process-step-reverse {
grid-template-columns: 1fr;
direction: ltr;
}
.step-connector {
left: 2rem;
transform: none;
}
}
@media (max-width: 768px) {
.testimonials-featured {
padding: var(--spacing-lg);
}
.testimonial-text p {
font-size: 1rem;
}
.process-step {
margin-bottom: var(--spacing-2xl);
}
.step-content {
padding: var(--spacing-md);
}
.step-title {
font-size: 1.25rem;
}
}