@font-face {
    font-family: "GiSansDisplayBold";
    src: url("./Fonts/GiSansDisplay-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "GiSansDisplayMedium";
    src: url("./Fonts/GiSansDisplay-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "GiSansDisplayRegular";
    src: url("./Fonts/GiSansDisplay-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "GiSansTextRegular";
    src: url("./Fonts/GiSansText-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "CeraGodrejRegular";
    src: url("./Fonts/CeraGodrejInterio-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "CeraGodrejMedium";
    src: url("./Fonts/CeraGodrejInterio-Medium_2.ttf") format("truetype");
}

@font-face {
    font-family: "MyriadBold";
    src: url("./Fonts/MyriadPro-Bold.otf") format("opentype");
}

:root {
    --text-dark: #111827;
    --text-mid: #5f6761;
    --cream: #f0ede6;
    --cream-mid: #dedbd2;
    --cream-dark: #c8c3b8;
    --sage: #12302D;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "GiSansTextRegular", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ==========================
   PAGE ANIMATIONS
========================== */

/* Initial hidden state */

.reveal-section,
.reveal-text,
.reveal-top {
    opacity: 0;
}


/* Header animation */

.reveal-top {
    transform: translateY(-60px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal-top.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text animation */

.reveal-text {
    transform: translateY(40px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section animation */

.reveal-section {
    transform: translateY(70px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger timing */

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Hero image subtle zoom */

.banner-image {
    animation: heroZoom 2.5s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

/* HEADER */

.header {
    background: #f2f2f2;
    position: relative;
    z-index: 100;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
}

.logo-section img {
    width: 190px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.desktop-nav a {
    text-decoration: none;
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.godrej-logo {
    width: 85px;
}

/* Hamburger */

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    z-index: 101;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #000;
    border-radius: 50px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Animate hamburger to X */

.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(5px, -5px);
}

/* Mobile Menu Animation */

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    overflow: hidden;

    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;

    transition: all 0.45s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 10px 0;
}

.mobile-menu li {
    border-bottom: 1px solid #ececec;

    opacity: 0;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

/* stagger animation */
.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active li:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active li:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu a {
    display: block;
    padding: 18px 24px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-family: "CeraGodrejMedium";
    transition: padding-left 0.3s ease;
}

.mobile-menu a:hover {
    padding-left: 30px;
}

/* desktop hide */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* HERO */
.desktop_banner {
    background: #12302D;
}

.hero-banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

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

.hero-banner picture,
.hero-banner picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-overlay {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            transparent 100%);
}

.banner-content {
    position: absolute;
    left: 70px;
    bottom: 80px;
    color: #fff;
}

.banner-content h1 {
    font-family: "GiSansDisplayBold";
    font-size: 46px;
    font-weight: 700;
}

.banner-content h2 {
    font-family: "GiSansDisplayMedium";
    font-size: 28px;
    margin-top: 10px;
}

.banner-details {
    margin-top: 16px;
}

.banner-details p {
    font-family: "GiSansTextRegular";
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.artist-text {
    font-family: "GiSansTextRegular";
    position: absolute;
    right: 30px;
    bottom: 25px;
    color: #fff;
    font-size: 12px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Tablet */

@media (max-width: 1024px) {
    .top-header {
        padding: 20px 30px;
    }

    .desktop-nav .nav-links {
        gap: 18px;
    }

    .banner-content {
        left: 40px;
    }

    .banner-content h1 {
        font-size: 44px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .top-header {
        padding: 16px 20px;
    }

    .logo-section img {
        width: 140px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .godrej-logo {
        width: 65px;
    }

    .hero-banner {
        height: 100vh;
    }

    .banner-overlay {
        width: 100%;
        height: 45%;
        bottom: 0;
        top: auto;

        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.45) 55%,
                transparent 100%);
    }

    .banner-content {
        left: 20px;
        right: 20px;
        bottom: 100px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content h2 {
        font-size: 22px;
    }

    .banner-details p {
        font-size: 15px;
    }

    .artist-text {
        font-size: 10px;
        right: 15px;
        bottom: 15px;
    }
}

/* ==========================
   OVERVIEW SECTION
========================== */

.overview-section {
    background: #e2e1dd;
    overflow: visible;
}

.overview-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 0px 40px;
    text-align: center;
}

/* Heading */

.overview-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.overview-heading img {
    width: 34px;
}

.overview-heading h2 {
    font-family: "GiSansTextRegular";
    font-size: 24px;
    letter-spacing: 2px;
    color: #111827;
}

/* Content */

.overview-content h3 {
    font-family: "GiSansTextRegular";
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 0;
    color: #111827;
    max-width: 950px;
    margin: auto;
    font-weight: 400;
}

.overview-content p {
    font-family: "GiSansTextRegular";
    font-size: 16px;
    line-height: 24px;
    color: #111827;
    max-width: 975px;
    margin: 20px auto 0;
    letter-spacing: 1.5px;
}

/* Image */

.overview-image-wrapper {
    position: relative;
    overflow: visible;
    z-index: 2;
}

.overview-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transform: scale(1.08);
    transition: transform 1.5s ease;
}

.overview-image-wrapper picture,
.overview-image-wrapper picture img {
    width: 100%;
    display: block;
    overflow: hidden;
}

/* zoom on reveal */
.overview-image-wrapper.active .overview-image {
    transform: scale(1);
}

/* Walkthrough button */

.walkthrough-btn {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: #fff;
    border-radius: 12px;
    width: 240px;
    height: 50px;
    font-family: "GiSansDisplayMedium";
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1.5px;
    z-index: 3;
}

.walkthrough-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Note */

.overview-note {
    position: absolute;
    bottom: 150px;
    right: 30px;
    color: #fff;
    font-size: 12px;
    z-index: 3;
}

/* Tablet */

@media (max-width: 1024px) {

    .overview-container {
        padding: 80px 30px 60px;
    }

    .overview-heading h2 {
        font-size: 38px;
    }

    

    .overview-content p {
        font-size: 20px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .overview-container {
        padding: 60px 20px 40px;
    }

    .overview-heading {
        gap: 12px;
        margin-bottom: 20px;
    }

    .overview-heading img {
        width: 26px;
    }

    .overview-heading h2 {
        font-size: 28px;
    }

    .overview-content h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .overview-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-top: 24px;
    }

    .walkthrough-btn {
        width: 180px;
        height: 58px;
        font-size: 18px;
        bottom: 170px;
    }

    .overview-note {
        bottom: 60px;
        right: 15px;
        font-size: 10px;
    }

    .overview-image-wrapper {
        min-height: 450px;
    }

    .overview-image {
        min-height: 450px;
        object-position: center;
    }
}

/* ==========================
   LOCATION SECTION
========================== */

.location-section {
    background: #12302D;
    padding: 80px 0px 80px;
    overflow: hidden;
}

/* Header */

.location-header {
    padding: 0px 0px 40px;
    text-align: center;
    background: #12302D;
}

.location-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.location-heading img {
    width: 32px;
}

.location-heading h2 {
    font-family: "GiSansTextRegular";
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff;
}

.location-header h3 {
    font-family: "GiSansTextRegular";
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    max-width: 975px;
    margin: 0px auto 0;
    letter-spacing: 1.5px;
}

/* Map */

.location-map-wrapper {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.location-map-wrapper picture,
.location-map-wrapper picture img {
    width: 100%;
    display: block;
}

.location-map {
    width: 100%;
    transform: scale(1.08);
    transition: transform 1.6s ease;
}

/* zoom animation */
.location-map-wrapper.active .location-map {
    transform: scale(1);
}

/* Button */

.location-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: #fff;
    border-radius: 10px;
    width: 240px;
    height: 50px;
    font-family: "GiSansDisplayMedium";
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1.5px;
}

.location-btn:hover {
    transform: translateX(-50%) scale(1.04);
}

/* Tablet */

@media (max-width: 1024px) {

    .location-header {
        padding: 70px 30px 50px;
    }

    .location-heading h2 {
        font-size: 36px;
    }

    .location-header h3 {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .location-section {
        padding-top: 70px;
    }

    .location-header {
        padding: 30px 20px 40px;
    }

    .location-heading {
        gap: 12px;
        margin-bottom: 22px;
    }

    .location-heading img {
        width: 24px;
    }

    .location-heading h2 {
        font-size: 28px;
    }

    .location-header h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .location-map-wrapper {
        min-height: 0;
        overflow: visible;
        padding-bottom: 34px;
        background: #fff;
    }

    .location-map-wrapper picture {
        overflow: hidden;
    }

    .location-map {
        min-height: 500px;
        object-fit: cover;
        object-position: center;
    }

    .location-btn {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none;
        margin: 22px auto 0;
        width: 180px;
        height: 58px;
        font-size: 18px;
        border-radius: 18px;
    }

    .location-btn:hover {
        transform: scale(1.02);
    }
}

/* ==========================
   LOCATION LEGEND
========================== */

.location-legend {
    position: absolute;
    left: 50px;
    bottom: 60px;

    width: 320px;
    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #8b8b8b;
    border-radius: 28px;

    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 5;
}

/* Header */

.legend-header {
    width: 100%;
    border: none;
    background: transparent;

    padding: 28px 30px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

.legend-header span {
    font-family: "GiSansDisplayBold";
    font-size: 20px;
    letter-spacing: 2px;
    color: #222;
}

.legend-header i {
    display: none;
}

/* Line */

.legend-content {
    padding: 0 20px 00px;
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* Item */

.legend-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.legend-item img {
    width: 34px;
    flex-shrink: 0;
}

.legend-item span {
    font-family: "GiSansTextRegular";
    font-size: 17px;
    color: #222;
    line-height: 1.4;
}

/* ==========================
   MOBILE ACCORDION
========================== */

@media (max-width: 768px) {

    .location-legend {
        left: 15px;
        right: 15px;
        bottom: 100px;

        width: auto;
        border-radius: 22px;
    }

    .legend-header {
        padding: 20px;
    }

    .legend-header span {
        font-size: 18px;
    }

    .legend-header i {
        display: block;
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .legend-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;

        border-top: none;

        transition:
            max-height 0.4s ease,
            padding 0.35s ease;
    }

    .location-legend.active .legend-content {
        max-height: 500px;
        padding: 0 20px 20px;
        border-top: 1px solid #d6d6d6;
    }

    .location-legend.active .legend-header i {
        transform: rotate(45deg);
    }

    .legend-item {
        margin-top: 18px;
    }

    .legend-item span {
        font-size: 14px;
    }

    .legend-item img {
        width: 28px;
    }

    .location-map-wrapper>.legend-content {
        position: static;
        z-index: 6;
        width: auto;
        display: block;
        visibility: visible;
        max-height: none;
        margin: 18px 14px 0;
        padding: 4px 14px;
        overflow: visible;
        border: 1px solid rgba(18, 48, 45, 0.08);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 30px rgba(18, 48, 45, 0.12);
        -webkit-overflow-scrolling: touch;
    }

    .location-map-wrapper>.legend-content .legend-accordion-header {
        min-height: 38px;
        padding: 8px 0;
        gap: 12px;
        font-size: 13px;
        line-height: 1.25;
    }

    .location-map-wrapper>.legend-content .legend-accordion-header span {
        flex: 0 0 auto;
        font-size: 20px;
        line-height: 1;
    }

    .location-map-wrapper>.legend-content .legend-accordion-body p {
        padding-bottom: 10px;
        margin-left: 0;
        font-size: 12px;
        line-height: 1.35;
    }
}

/* Accordion */

.legend-accordion {
    border-bottom: 1px solid #ececec;
}

.legend-accordion:last-child {
    border-bottom: none;
}

.legend-accordion-header {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    cursor: pointer;

    text-align: left;

    font-family: "GiSansTextRegular";
    font-size: 16px;
    color: #222;
}

.legend-accordion-header span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.legend-accordion.active .legend-accordion-header span {
    transform: rotate(45deg);
}

/* body */

.legend-accordion-body {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

.legend-accordion-body p {
    padding-bottom: 14px;
    color: #666;
    font-size: 14px;
    margin-left: 10px;
}

/* ==========================
   PLAN SECTION
========================== */

.plan-section {
    background: #DFDFDB;
    overflow: hidden;
}

.plan-container {
    max-width: 1440px;
    margin: auto;
    padding: 80px 0px;
    text-align: center;
}

/* Heading */

.plan-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.plan-heading img {
    width: 34px;
}

.plan-heading h2 {
    font-family: "GiSansTextRegular";
    font-size: 24px;
    letter-spacing: 2px;
    color: #222;
}

.plan-title {
    font-family: "GiSansTextRegular";
    font-size: 20px;
    line-height: 30px;
    max-width: 975px;
    margin: 0px auto 0;
    letter-spacing: 1.5px;
    color: #222;
    margin-bottom: 30px;
}

/* Image */

.master-plan-wrapper {
    position: relative;
}

.master-plan-wrapper picture,
.master-plan-wrapper picture img {
    width: 100%;
    display: block;
}

.master-plan-image {
    width: 100%;
    transform: scale(1.04);
    transition: transform 1.5s ease;
}

.master-plan-wrapper.active .master-plan-image {
    transform: scale(1);
}

/* Zoom Button */

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 25px;

    width: 65px;
    height: 65px;

    border: 2px solid #2d2d2d;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn i {
    font-size: 24px;
    color: #222;
}

.zoom-btn:hover {
    transform: scale(1.08);
}

/* Modal */

.plan-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
    z-index: 999;
}

.plan-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-image {
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;

    background: transparent;
    border: none;

    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

/* Tablet */

@media (max-width: 1024px) {

    .plan-heading h2 {
        font-size: 36px;
    }

    .plan-title {
        font-size: 38px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .plan-container {
        padding: 60px 20px;
    }

    .plan-heading {
        gap: 12px;
    }

    .plan-heading img {
        width: 24px;
    }

    .plan-heading h2 {
        font-size: 28px;
    }

    .plan-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .zoom-btn {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .zoom-btn i {
        font-size: 18px;
    }

    .modal-image {
        width: 95%;
    }

    .close-modal {
        right: 20px;
        top: 20px;
        font-size: 40px;
    }
}

/* ==========================
   GOOD LIFE SECTION
========================== */

.goodlife-section {
    background: #05342f;
    overflow: hidden;
}

.goodlife-container {
    padding: 80px 0;
}

/* Heading */

.goodlife-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.goodlife-heading img {
    width: 34px;
}

.goodlife-heading h2 {
   font-family: "GiSansTextRegular";
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.amenities-title{
    font-family: "GiSansTextRegular";
    font-size: 20px;
    line-height: 30px;
    max-width: 975px;
    margin: 0px auto 0;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}
/* Features */

.goodlife-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    max-width: 1400px;
    margin: auto;
    padding: 0 50px 40px;
}

.feature-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card img {
    width: 100px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-family: "GiSansDisplayMedium";
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

/* Image */

.goodlife-image-wrapper {
    overflow: hidden;
}

.goodlife-image-wrapper picture,
.goodlife-image-wrapper picture img {
    width: 100%;
    display: block;
}

.goodlife-image {
    width: 100%;
    transform: scale(1.08);
    transition: transform 1.5s ease;
}

.goodlife-image-wrapper.active .goodlife-image {
    transform: scale(1);
}

/* Tablet */

@media (max-width: 1024px) {

    .goodlife-heading h2 {
        font-size: 38px;
    }

    .goodlife-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .feature-card img {
        width: 100px;
    }

    .feature-card h3 {
        font-size: 22px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .goodlife-container {
        padding: 60px 20px;
    }

    .goodlife-heading {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
    }

    .goodlife-heading img {
        width: 26px;
    }

    .goodlife-heading h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .goodlife-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
        padding: 0 0px 50px;
    }

    .feature-card img {
        width: 90px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 16px;
    }
}

/* ==========================
   GALLERY SECTION
========================== */

.gallery-section {
    background: #f3f1ee;
    padding: 90px 0;
    overflow: hidden;
}

.gallery-container {
    max-width: 1440px;
    margin: auto;
}

.gallery-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    margin-bottom: 60px;
    padding: 0 20px;
}

.gallery-heading img {
    width: 34px;
}

.gallery-heading h2 {
    font-family: "GiSansDisplayMedium";
    font-size: 46px;
    text-align: center;
    color: #222;
}

/* slider */

/* Slider */

.amenitiesSwiper {
    overflow: visible;
    width: 100%;
    padding-bottom: 40px;
}

.amenitiesSwiper .swiper-wrapper {
    align-items: center;
}

.amenitiesSwiper .swiper-slide {
    transition:
        transform 0.7s ease,
        opacity 0.7s ease;

    transform: scale(0.78);
    opacity: 0.28;

    text-align: center;
}

/* Center active slide */

.amenitiesSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

/* left/right visible */

.amenitiesSwiper .swiper-slide-prev,
.amenitiesSwiper .swiper-slide-next {
    opacity: 0.45;
    transform: scale(0.86);
}

.amenitiesSwiper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.amenitiesSwiper h3 {
    font-family: "GiSansDisplayMedium";
    font-size: 30px;
    margin-top: 20px;
    color: #222;
}

/* Desktop spacing */

@media (min-width: 1200px) {
    .amenitiesSwiper {
        width: 95%;
        margin: auto;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .amenitiesSwiper .swiper-slide {
        transform: scale(0.9);
        opacity: 0.4;
    }

    .amenitiesSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .amenitiesSwiper img {
        height: 420px;
    }

    .amenitiesSwiper h3 {
        font-size: 22px;
    }
}

/* -- SECTION -- */
.amenities-section {
    padding: 80px 40px;
    max-width: none;
    margin: 0;
    background: #e2e1dd;
}

.amenities-section > .section-header,
.amenities-section > .carousel-wrapper,
.amenities-section > .dots-row,
.amenities-section > .cta-wrap,
.amenities-section > .gallery-actions,
.amenities-section > .gallery-disclaimer {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* -- HEADER -- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.header-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.header-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    line-height: 1.2;
    text-align: center;
}

/* -- CAROUSEL -- */
.carousel-wrapper {
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 16px;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- CARD -- */
.amenity-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-card.side {
    opacity: 0.55;
    filter: saturate(0.3) brightness(1.05);
    transform: scale(0.94);
}

.amenity-card.center {
    opacity: 1;
    filter: none;
    transform: scale(1);
    box-shadow: 0 24px 60px rgba(30, 38, 32, 0.18);
}

.amenity-card:hover.side {
    opacity: 0.75;
    transform: scale(0.96);
}

.card-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cream-mid);
}

.amenity-card.side .card-image {
    height: 420px;
}

.amenity-card.center .card-image {
    height: 540px;
}

.amenity-card:hover .card-image {
    transform: scale(1.04);
}

/* Placeholder gradient for images */
.card-placeholder {
    width: 100%;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
    position: relative;
    overflow: hidden;
}

.card-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 38, 32, 0.3) 100%);
}

/* SVG placeholder scenes */
.placeholder-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.amenity-card.side .card-img-wrap {
    height: 420px;
}

.amenity-card.center .card-img-wrap {
    height: 540px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 26, 22, 0.45) 100%);
    pointer-events: none;
}

.amenity-card.side .card-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(20, 26, 22, 0.2) 100%);
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.amenity-card.center .card-label {
    opacity: 1;
    transform: translateY(0);
}

/* -- NAMES BELOW -- */
.names-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.amenity-name {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.amenity-name.active {
    color: var(--text-dark);
    font-weight: 500;
}

.amenity-name:hover {
    color: var(--text-dark);
}

/* -- NAV ARROWS -- */
.nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -20px;
    z-index: 10;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(61, 74, 62, 0.3);
    background: rgba(240, 237, 230, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.25s ease;
    margin: 0 -24px;
    color: var(--text-dark);
}

.nav-btn:hover {
    background: var(--white);
    border-color: var(--sage);
    transform: scale(1.06);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

/* -- DOTS -- */
.dots-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 28px;
    height: 2px;
    border-radius: 1px;
    background: var(--cream-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--sage);
    width: 48px;
}

/* -- CTA BUTTON -- */
.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.cta-btn {
    border: none;
    background: #fff;
    border-radius: 10px;
    width: 240px;
    height: 50px;
    font-family: "GiSansDisplayMedium";
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1.5px;
}

.cta-btn:hover {
    background: #f7f7f5;
    color: var(--text-dark);
    border-color: #f7f7f5;
}

.gallery-actions {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) 1px minmax(360px, 2fr);
    align-items: start;
    gap: 64px;
    margin-top: 118px;
}

.gallery-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.gallery-action-group h3 {
    font-family: "GiSansTextRegular", sans-serif;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #111827;
    font-weight: 600;
}

.gallery-action-divider {
    width: 1px;
    height: 88px;
    background: rgba(17, 24, 39, 0.55);
}

.compliance-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 150px;
    min-height: 43px;
    padding: 10px 20px;
    border: 1px solid rgba(17, 24, 39, 0.72);
    color: #111827;
    background: transparent;
    text-decoration: none;
    font-family: "GiSansTextRegular", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: #111827;
}

.download-btn svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.gallery-action-group-wide .download-btn {
    min-width: 234px;
}

.gallery-disclaimer {
    margin-top: 40px;
    font-family: "GiSansTextRegular", sans-serif;
    font-size: 8px;
    line-height: 1.65;
    letter-spacing: 0.35px;
    color: #111827;
    font-weight: 600;
    text-align: left;
}

/* -- LIGHTBOX -- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 22, 20, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90vw;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.open .lightbox-content {
    transform: scale(1);
}

.lightbox-img-wrap {
    width: 100%;
    height: 540px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.lightbox-info {
    margin-top: 24px;
    text-align: center;
}

.lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.06em;
}

.lightbox-desc {
    margin-top: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(240, 237, 230, 0.6);
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s ease;
    z-index: 10;
    font-size: 18px;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: calc(100% + 80px);
    left: -40px;
    pointer-events: none;
}

.lightbox-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(240, 237, 230, 0.3);
    background: rgba(240, 237, 230, 0.12);
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.25s ease;
}

.lightbox-nav-btn:hover {
    background: rgba(240, 237, 230, 0.25);
    border-color: rgba(240, 237, 230, 0.6);
}

/* -- GALLERY MODAL -- */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 22, 20, 0.96);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.gallery-modal.open {
    opacity: 1;
    pointer-events: all;
}

.gallery-modal-inner {
    padding: 60px 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.gallery-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.08em;
}

.gallery-close-btn {
    background: transparent;
    border: 1px solid rgba(240, 237, 230, 0.3);
    color: #fff;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-close-btn:hover {
    background: rgba(240, 237, 230, 0.1);
    border-color: rgba(240, 237, 230, 0.6);
}

.gallery-filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-chip {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 2px;
    border: 1px solid rgba(240, 237, 230, 0.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-chip.active,
.filter-chip:hover {
    border-color: rgba(240, 237, 230, 0.7);
    color: #fff;
    background: rgba(240, 237, 230, 0.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.35s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18, 22, 20, 0.7));
    padding: 24px 16px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* -- Animated card entrance -- */
@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cards-grid {
    animation: cardIn 0.7s ease both;
}

/* -- Responsive -- */
@media (max-width: 768px) {
    .amenities-section {
        padding: 44px 16px 40px;
    }

    .amenities-section > .section-header,
    .amenities-section > .carousel-wrapper,
    .amenities-section > .dots-row,
    .amenities-section > .cta-wrap,
    .amenities-section > .gallery-actions,
    .amenities-section > .gallery-disclaimer {
      
        overflow: auto;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 18px;
    }

    .header-text {
        max-width: 340px;
        font-size: 1.55rem;
        line-height: 1.18;
    }

    .cards-grid {
        display: block;
        padding: 0;
    }

    .amenity-card.side {
        display: none;
    }

    .amenity-card.center .card-img-wrap {
        height: clamp(390px, 58vh, 460px);
    }

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .amenity-card {
        border-radius: 5px;
    }

    .card-img-wrap {
        border-radius: 5px;
    }

    .amenity-card.center {
        box-shadow: 0 18px 42px rgba(30, 38, 32, 0.18);
    }

    .card-label {
        bottom: 18px;
        font-size: 1.05rem;
        line-height: 1.1;
        letter-spacing: 0.14em;
    }

    .names-row {
        display: block;
        margin-top: 24px;
        padding: 0 54px;
    }

    .amenity-name {
        display: none;
        min-height: 0;
        padding: 0 2px;
        font-size: 0.9rem;
        line-height: 1.18;
        letter-spacing: 0.02em;
        color: rgba(95, 103, 97, 0.82);
        overflow-wrap: break-word;
    }

    .amenity-name.active {
        display: block;
        font-size: 0.96rem;
        color: var(--text-dark);
    }

    .nav-arrows {
        top: calc(50% - 28px);
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        padding: 0;
    }

    .nav-btn {
        width: 54px;
        height: 54px;
        margin: 0;
        background: rgba(247, 246, 242, 0.92);
        border-color: rgba(61, 74, 62, 0.18);
        box-shadow: 0 10px 26px rgba(30, 38, 32, 0.14);
    }

    .nav-btn svg {
        width: 19px;
        height: 19px;
    }

    .dots-row {
        gap: 12px;
        margin-top: 24px;
        padding: 0 10px;
    }

    .dot {
        width: 27px;
    }

    .dot.active {
        width: 45px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-actions {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 64px;
    }

    .gallery-action-divider {
        width: 100%;
        height: 1px;
    }

    .compliance-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn,
    .gallery-action-group-wide .download-btn {
        width: min(100%, 320px);
    }

    .gallery-disclaimer {
        margin-top: 30px;
        font-size: 8px;
    }
}

.download-btn span{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}
.gallery-disclaimer{
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
}
#gallery-btn{
    display: none;
}
.flat_btn_div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}
.flat_btn{
    border: none;
    background: #fff;
    border-radius: 10px;
    width: auto;
    height: 50px;
    font-family: "GiSansDisplayMedium";
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1.5px;
    padding: 0 20px;
}
@media screen and (max-width: 767px){
    .flat_btn_div{
        flex-wrap: wrap;
        gap: 20px;
    }
    .flat_btn{
       width: auto;
       padding: 0 10px;
    }
}
.gallery_header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery_header h2{
font-family: "GiSansTextRegular";
    font-size: 24px;
    letter-spacing: 2px;
    color: #222;
    text-transform: uppercase;
}
.gallery_header h3{
font-family: "GiSansTextRegular";
    font-size: 20px;
    line-height: 30px;
    max-width: 975px;
    margin: 0px auto 0;
    letter-spacing: 1.5px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width: 1024px) {
    .gallery_header h2 {
        font-size: 38px;
    }
}

.enquiry-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

.enquiry-form-overlay.active {
  display: flex;
}

/* ============================================
   POPUP CARD
============================================ */
.enquiry-form {
  background: #fff;
  width: 100%;
  max-width: 330px;
  padding: 32px 32px 10px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.35s ease;
  border: 1px solid #000;
}
.enquiry-form input::placeholder{
    color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* CLOSE ICON */
.enquiryFormClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.25s;
}

.enquiryFormClose:hover {
  opacity: 1;
}

/* ============================================
   TITLE
============================================ */
.enquiry-form h3 {
  text-align: center;
  font-size: 18px;
  padding: 0;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #000;
  letter-spacing: 0.2px;
}

/* ============================================
   FLOATING INPUT BOXES
============================================ */
.ip-box {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#txt_country {
  width: 25%;
}

.ip-box input,
.ip-box select {
  width: 100%;
  padding: 14px 14px 14px 0;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  font-size: 16px;
  color: #000;
  transition: all 0.3s ease;
}
.ip-box input::placeholder,
.ip-box select::placeholder {
  color: #000;
}
.ip-box input:focus,
.ip-box select:focus {
  background: transparent;
  outline: none;
}

/* FLOATING LABELS */
.ip-box label {
  position: absolute;
  left: 14px;
  top: 13px;
  color: #6a7890;
  font-size: 15px;
  pointer-events: none;
  transition: 0.25s ease;
}

.ip-box input:not(:placeholder-shown) + label,
.ip-box input:focus + label,
.ip-box select:focus + label {
  top: -10px;
  left: 10px;
  background: #transparent;
  padding: 0 6px;
  font-size: 13px;
  color: #000;
}
.iti {
  width: 100%;
}
.iti__selected-dial-code{
  color: #000 !important;
}

/* ============================================
   VALIDATION MESSAGES
============================================ */
#valid-msg,
#error-msg {
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 10px;
  display: block;
}

#valid-msg {
  color: #0a8235;
}

#error-msg {
  color: #d30000;
}
.form-content{
    margin-top: 1em;
}
/* ============================================
   CHECKBOX SECTION
============================================ */
.homeally_dwnld_checklist {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 18px 0 10px;
  align-items: center;
}

.homeally_dwnld_checklist input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #0a63aa;
}

.homeally_dwnld_checklist span {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  margin-top: 0px;
}

/* ============================================
   SUBMIT BUTTON
============================================ */
.submit-btn {
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  border-radius: 0px;
  border: 1px solid #000;
  cursor: pointer;
  background: #000;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
  margin-top: 12px;
  text-transform: uppercase;
}
.form_cta_btn {
    position: fixed;
    right: -52px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 18px;
    background-color: #fff;
    color: #000;
    font-family: "GiSansDisplayMedium";
    border: 0;
    outline: none;
    padding: 10px 10px;
    border-radius: 0 0 10px 10px;
    z-index: 1;
    cursor: pointer;
}
.field-error{
    color: red;
    font-size: 12px;
}
@media only screen and (max-width: 767px) {
    .form_cta_btn {
        top: auto;
        transform: translateY(0) rotate(0deg);
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border:1px solid #000;
    }
}