* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --111-black: #111;
    --666-grey: #666;
    --green: #009D53;
    --font-pop: "Poppins", sans-serif;
    --font-hed: "Hedvig Letters Serif", serif;
}

body {
    font-family: var(--font-pop);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--666-grey);
}


/* utilities */
a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: white !important;
}

.d-none {
    display: none;
}

.mx-auto {
    margin-inline: auto;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.ym-container {
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
}

.title_90 {
    font-family: var(--font-hed);
    font-size: 90px;
    line-height: 102px;
    margin-bottom: 30px;
    font-weight: 400;
    color: white;
}

.title_72 {
    font-family: var(--font-hed);
    font-size: 72px;
    line-height: 82px;
    font-weight: 400;
    color: var(--111-black);
}

.title_60 {
    font-family: var(--font-hed);
    font-size: 60px;
    line-height: 72px;
    font-weight: 400;
    color: var(--111-black);
}

.title_30 {
    font-family: var(--font-hed);
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    color: var(--111-black);
}

.title_24_pop {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--666-grey);
}

.btn_1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 4px 24px;
    border-radius: 100px;
    overflow: hidden;
    background: white;
    color: #000;
    border: 1px solid transparent;
    text-decoration: none;
    z-index: 1;
    transition: color 0.4s ease;
}

/* BG overlay */
.btn_1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

/* Image transition */
.btn_1 img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* HOVER */
.btn_1:hover {
    color: #fff;
    border: 1px solid white;

}

.btn_1:hover::before {
    transform: translateX(0);
}

.btn_1:hover img {
    transform: rotate(43deg);
    filter: invert(1);
}


.btn_2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 4px 24px;
    border-radius: 100px;
    overflow: hidden;
    background-color: var(--111-black);
    color: white;
    text-decoration: none;
    z-index: 1;
    transition: color 0.4s ease;
    border: 1px solid var(--111-black);
    width: fit-content;
}

.btn_2::before, .submit_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

/* Image transition */
.btn_2 img, .submit_btn img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* HOVER */
.btn_2:hover, .submit_btn:hover {
    color: var(--111-black);
}

.btn_2:hover::before, .submit_btn:hover::before {
    transform: translateX(0);
    /* Right → Left */
}

.btn_2:hover img, .submit_btn:hover img {
    transform: rotate(42deg);
    filter: invert(1);
    /* makes black arrow white */
}


/* utilities */

/* Header */
/* ===== HEADER ===== */

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: 20px 0;
}

header.is-glass {
    background: rgba(43, 43, 43, 0.83);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 43, 43, 0.64);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

/* ===== LOGO ===== */
.logo img {
    max-height: 100px;
}

/* ===== MENU ===== */
.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.6s ease;
}
.nav-links a:hover {
    color: var(--green);
    transition: all 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Active Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    background: #111;
    display: flex;
    align-items: center;
    transition: right 0.5s ease;
    padding: 20px;
}

.mobile-menu.active {
    top: 100px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    nav {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        order: 1;
    }

    .hamburger {
        order: 2;
    }
}

/* DEMO BACKGROUND */
/* .hero {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #111;
} */

/* hero css */
.hero_wrapper {
    position: relative;
}

.hero_content {
    position: absolute;
    max-width: 950px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    text-align: center;
}

/* hero css */
/* about css */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.abt_left {
    flex: 1;
}

.abt_img {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
}

.abt_left h2 {
    margin-bottom: 40px;
}

.abt_right {
    display: flex;
    gap: 40px;
}

/* about css */
/* lifestyle css */
.sec_hed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.farm_wrapper {
    margin-top: 80px;
}

.farm_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
    height: 100%;
    padding-bottom: 50px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 50px;
    background-color: white;
}

.farm_name,
.farm_desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.farm_name .title_24_pop {
    color: var(--green);
    margin-top: 30px;
    margin-bottom: 0;
}

.farm_list {
    margin-top: 20px;
    padding-left: 24px;
}

.farm_img {
    overflow: hidden;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    bottom: -18px !important;
}

.slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: 30px;
    /* FIXED space */
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #D9D9D9;
    padding: 0;
    transform: scaleX(0.95);
    transform-origin: center;
    transition: all 0.3s ease-in;
}

.slick-dots li.slick-active button {
    width: 30px;
    background-color: var(--666-grey);
    transform: scaleX(1);
    transition: all 0.3s ease-out;
}

/* lifestyle css */
/* aminities */
.aminities_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-top: 100px;
}

.aminities_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* aminities */
/* contact */
.contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    margin-top: 60px;
}

.contact_wrapper .title_24_pop {
    color: var(--green);
    display: block;
    margin-bottom: 16px;
}

.ct_box:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
}

.ct_box .ft_line {
    margin-top: 0;
}

.form_wrapper input,
.form_wrapper textarea {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 6px;
    width: 100%;
    font-size: 18px;
    font-family: var(--font-pop);
    padding-left:0px;
}

.form_group {
    margin-bottom: 20px;
}

.submit_btn {
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 4px 24px;
    border-radius: 100px;
    overflow: hidden;
    background-color: var(--111-black);
    color: white;
    z-index: 1;
    transition: color 0.4s ease;
    border: 1px solid var(--111-black);
    width: fit-content;
    cursor: pointer;
    appearance: none;
}


/* contact */

/* footer */
footer {
    background-color: var(--111-black);
    padding: 40px 0;
    color: white;
}

.ft_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50%;
}

.ft_left img {
    margin-bottom: 20px;
}

.ft_line {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ft_btm {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid #bbb;
    display: flex;
    justify-content: space-between;
}
footer .ft_line a:hover, .ft_btm a:hover{color: var(--green);
    transition: all 0.6s ease;}

/* footer */
/* lifestyle slider */
.live_slider {
    margin-top: 40px;
}

.custom_arrow {
    display: flex;
    justify-content: start;
    width: fit-content;
    gap: 24px;
    /*margin-top: 23px;*/
}

.slider-arrow {
    padding: 12px;
    background-color: var(--111-black);
    width: fit-content;
    height: 48px;
    width: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.slider-arrow svg {
    scale: 1.5;
}

.slider-arrow svg path {
    stroke: white !important;
}

.is-disabled {
    background-color: white !important;
    cursor: no-drop;
    border: 2px solid var(--666-grey);
}

.slider-arrow.is-disabled svg path {
    stroke: #6666 !important;
}

.living_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.slide_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

/* lifestyle slider */