:root {
    --color-primary: #4F5E32;
    --color-secondary: #A9763F;
    --color-tertiary: #F6F3E2;
    --color-brown: #2B2118;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.height-100{
    height: 100vh;
}

/* Stats List Styles */
.stats-list {
    list-style: none;
    padding: 0;
    margin: 0; 
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-content {
    flex: 1;
}

.stats-title {
    color: #ffffff;
    font-size: 3vw;
    font-weight: 400;
    margin-bottom: 0px;
}

.stats-description {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    font-weight: 300;
    opacity: 0.5;
}

.stats-number {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}

/* Testimonies Styles */
.testimonies {
list-style: none;
    padding: 0; 
    display: flex;
    gap: 40px;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    transform: translateX(100vw);
}

.testimony-card {
    width: 45%;
    min-width: 400px;
    background-color: #3d3229; 
    padding: 0;
    position: relative;
}

.testimony-card-left {
    transform: rotate(-2deg);
}

.testimony-card-right {
    transform: rotate(2deg);
}

.testimony-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.testimony-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    padding: 40px 20px 15px 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    letter-spacing: 1px;
}

.testimony-content {
    padding: 30px;
    position: relative;
}

.testimony-quote-open {
    color: var(--color-secondary);
    font-size: 80px;
    line-height: 0.5;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimony-quote-close {
    color: var(--color-secondary);
    font-size: 80px;
    line-height: 0.5;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.testimony-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 20px 30px 20px 10px;
    font-weight: 300;
}

/* Hero Section Styles */
h1 {
    font-size: 12vw;
    font-weight: 900;
    line-height: 1;
}

h2 {
    font-size: 5vw;
}

h3 {
    font-size: 4vw;
    font-weight: 900;
}

.floating1 {
    position: absolute;
    top: 0;
    left: 0;
}

.floating2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.video--hero {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
    height: 160px;
    transform: rotate(-7deg);
    overflow: hidden;
}

.video--hero video {
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    background-size: cover;
}

.section-mod {
    padding: 100px 0;
}

.font-weight-900 {
    font-weight: 900;
}

body .lead {
    font-size: 2vw;
    font-weight: 600;
}

#step3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.full-width {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Care Section Styles */
.care-list {
    list-style: none;
    padding: 60px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 100px; 
    transform: translateY(110vh);
}

.care-item {
    display: flex;
    flex-direction: column; 
    border-bottom: 1px solid white;
    gap: 20px;
}

.care-image { 
    flex-shrink: 0; 
    overflow: hidden;
}

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

.care-content {
    flex: 1;
    display: flex; 
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}

.care-label {
    color: #ffffff;
    font-size: 2.3vw;
    font-weight: 300;
    margin: 0;
    text-transform: capitalize;
}

.care-number {
    color: #fff;
    font-size: 3.3vw;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Button Styles with Letter Animation */
.tobtn {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.tobtn a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-brown);
    background-color: var(--color-tertiary);
    border: 3px solid var(--color-secondary);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tobtn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(169, 118, 63, 0.3), transparent);
    transition: left 0.5s ease;
}

.tobtn a:hover::before {
    left: 100%;
}

.tobtn a:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-tertiary);
}

.tobtn a .letter {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.1em;
    vertical-align: top;
}

.tobtn a .letter-original,
.tobtn a .letter-clone {
    display: block;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.tobtn a .letter-clone {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

/* Background Box Styles */
.bgbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 60px);
    height: calc(100vh - 60px);
    object-fit: cover;
}

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

/* Margin Bottom Classes */
.mb-0 { margin-bottom: 0px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }
.mb-110 { margin-bottom: 110px !important; }
.mb-120 { margin-bottom: 120px !important; }
.mb-130 { margin-bottom: 130px !important; }
.mb-140 { margin-bottom: 140px !important; }
.mb-150 { margin-bottom: 150px !important; }
.mb-160 { margin-bottom: 160px !important; }
.mb-170 { margin-bottom: 170px !important; }
.mb-180 { margin-bottom: 180px !important; }
.mb-190 { margin-bottom: 190px !important; }
.mb-200 { margin-bottom: 200px !important; }
.mb-210 { margin-bottom: 210px !important; }
.mb-220 { margin-bottom: 220px !important; }
.mb-230 { margin-bottom: 230px !important; }
.mb-240 { margin-bottom: 240px !important; }
.mb-250 { margin-bottom: 250px !important; }
.mb-260 { margin-bottom: 260px !important; }
.mb-270 { margin-bottom: 270px !important; }
.mb-280 { margin-bottom: 280px !important; }
.mb-290 { margin-bottom: 290px !important; }
.mb-300 { margin-bottom: 300px !important; }

/* Margin Top Classes */
.mt-0 { margin-top: 0px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }
.mt-110 { margin-top: 110px !important; }
.mt-120 { margin-top: 120px !important; }
.mt-130 { margin-top: 130px !important; }
.mt-140 { margin-top: 140px !important; }
.mt-150 { margin-top: 150px !important; }
.mt-160 { margin-top: 160px !important; }
.mt-170 { margin-top: 170px !important; }
.mt-180 { margin-top: 180px !important; }
.mt-190 { margin-top: 190px !important; }
.mt-200 { margin-top: 200px !important; }
.mt-210 { margin-top: 210px !important; }
.mt-220 { margin-top: 220px !important; }
.mt-230 { margin-top: 230px !important; }
.mt-240 { margin-top: 240px !important; }
.mt-250 { margin-top: 250px !important; }
.mt-260 { margin-top: 260px !important; }
.mt-270 { margin-top: 270px !important; }
.mt-280 { margin-top: 280px !important; }
.mt-290 { margin-top: 290px !important; }
.mt-300 { margin-top: 300px !important; }

/* Padding Bottom Classes */
.pb-0 { padding-bottom: 0px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-110 { padding-bottom: 110px !important; }
.pb-120 { padding-bottom: 120px !important; }
.pb-130 { padding-bottom: 130px !important; }
.pb-140 { padding-bottom: 140px !important; }
.pb-150 { padding-bottom: 150px !important; }
.pb-160 { padding-bottom: 160px !important; }
.pb-170 { padding-bottom: 170px !important; }
.pb-180 { padding-bottom: 180px !important; }
.pb-190 { padding-bottom: 190px !important; }
.pb-200 { padding-bottom: 200px !important; }
.pb-210 { padding-bottom: 210px !important; }
.pb-220 { padding-bottom: 220px !important; }
.pb-230 { padding-bottom: 230px !important; }
.pb-240 { padding-bottom: 240px !important; }
.pb-250 { padding-bottom: 250px !important; }
.pb-260 { padding-bottom: 260px !important; }
.pb-270 { padding-bottom: 270px !important; }
.pb-280 { padding-bottom: 280px !important; }
.pb-290 { padding-bottom: 290px !important; }
.pb-300 { padding-bottom: 300px !important; }

/* Padding Top Classes */
.pt-0 { padding-top: 0px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-100 { padding-top: 100px !important; }
.pt-110 { padding-top: 110px !important; }
.pt-120 { padding-top: 120px !important; }
.pt-130 { padding-top: 130px !important; }
.pt-140 { padding-top: 140px !important; }
.pt-150 { padding-top: 150px !important; }
.pt-160 { padding-top: 160px !important; }
.pt-170 { padding-top: 170px !important; }
.pt-180 { padding-top: 180px !important; }
.pt-190 { padding-top: 190px !important; }
.pt-200 { padding-top: 200px !important; }
.pt-210 { padding-top: 210px !important; }
.pt-220 { padding-top: 220px !important; }
.pt-230 { padding-top: 230px !important; }
.pt-240 { padding-top: 240px !important; }
.pt-250 { padding-top: 250px !important; }
.pt-260 { padding-top: 260px !important; }
.pt-270 { padding-top: 270px !important; }
.pt-280 { padding-top: 280px !important; }
.pt-290 { padding-top: 290px !important; }
.pt-300 { padding-top: 300px !important; }

/* Color Utility Classes */
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-tertiary { background-color: var(--color-tertiary) !important; }
.bg-brown { background-color: var(--color-brown) !important; }

.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-tertiary { color: var(--color-tertiary) !important; }
.text-brown { color: var(--color-brown) !important; }

.border-primary { border-color: var(--color-primary) !important; }
.border-secondary { border-color: var(--color-secondary) !important; }
.border-tertiary { border-color: var(--color-tertiary) !important; }
.border-brown { border-color: var(--color-brown) !important; }
