/* Overview Door Section */
.overview-door-section {
    position: relative;
    background: #f1dbbb;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(210, 180, 140, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(222, 184, 135, 0.2) 0%, transparent 50%);
    padding: 100px 0;
    overflow: hidden;
}

.overview-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

/* Door Frame Wrapper */
.door-frame-wrapper {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.door-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.door-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Overview Text Content */
.overview-text-content {
    flex: 1;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fancy Heading */
.overview-fancy-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 35px;
}

.script-line {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 65px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
}

.serif-line {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #08472d;
    line-height: 1.1;
    text-transform: uppercase;
    margin-left: 80px;
}

.script-line-small {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 58px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    margin-left: auto;
    align-self: flex-end;
    margin-right: 50px;
}

/* Overview Description */
.overview-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #08472d;
    max-width: 650px;
}

/* Decorative Leaves */
.leaf-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.leaf-top-right {
    top: 0;
    right: 0;
    width: 350px;
    opacity: 0.8;
    animation: floatLeaves 6s ease-in-out infinite;
}

@keyframes floatLeaves {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.leaf-decoration img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .overview-container {
        padding: 0 60px;
    }

    .script-line {
        font-size: 55px;
    }

    .serif-line {
        font-size: 42px;
        margin-left: 60px;
    }

    .script-line-small {
        font-size: 50px;
        margin-right: 30px;
    }

    .overview-description {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .overview-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 40px;
    }

    .door-frame-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .overview-text-content {
        width: 100%;
        text-align: left;
    }

    .script-line {
        font-size: 50px;
    }

    .serif-line {
        font-size: 38px;
        margin-left: 40px;
    }

    .script-line-small {
        font-size: 45px;
        margin-right: 0;
        align-self: flex-start;
        margin-left: auto;
    }

    .overview-description {
        max-width: 100%;
    }

    .leaf-top-right {
        width: 250px;
        top: 20px;
    }
}

/* Mobile Layout - Image on Top, Text Below */
@media (max-width: 768px) {
    .overview-door-section {
        padding: 60px 0;
    }

    .overview-container {
        padding: 0 20px;
        gap: 40px;
        flex-direction: column;
    }

    /* Door frame takes full width and centers */
    .door-frame-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        order: 1;
    }

    .door-frame {
        max-width: 100%;
    }

    .door-image {
        width: 100%;
    }

    /* Text content below image */
    .overview-text-content {
        order: 2;
        width: 100%;
        text-align: center;
    }

    /* Center align heading */
    .overview-fancy-heading {
        align-items: center;
        margin-bottom: 30px;
    }

    .script-line {
        font-size: 42px;
        text-align: center;
    }

    .serif-line {
        font-size: 32px;
        margin-left: 0;
        text-align: center;
    }

    .script-line-small {
        font-size: 40px;
        margin-right: 0;
        margin-left: 0;
        align-self: center;
        text-align: center;
    }

    /* Center description */
    .overview-description {
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .leaf-top-right {
        width: 200px;
        opacity: 0.5;
        top: 10px;
    }
}

@media (max-width: 480px) {
    .overview-door-section {
        padding: 50px 0;
    }

    .overview-container {
        gap: 30px;
    }

    .door-frame-wrapper {
        max-width: 350px;
    }

    .script-line {
        font-size: 36px;
    }

    .serif-line {
        font-size: 28px;
    }

    .script-line-small {
        font-size: 34px;
    }

    .overview-description {
        font-size: 15px;
    }

    .leaf-top-right {
        width: 150px;
        opacity: 0.4;
    }
}

/* Highlights Tree Section */
.highlights-tree-section {
    position: relative;
    background: #f1dbbb;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(210, 180, 140, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(222, 184, 135, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 170, 130, 0.2) 0%, transparent 70%);
    padding: 100px 0 0px;
    overflow: hidden;
}

/* Add vintage texture overlay */
.highlights-tree-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
    opacity: 0.3;
    pointer-events: none;
}

.highlights-tree-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.highlights-header {
    text-align: center;
    margin-bottom: 80px;
}

.highlights-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.script-title {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    margin-bottom: 5px;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    text-transform: uppercase;
}

/* Tree Highlights Wrapper */
.tree-highlights-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 900px;
    margin: 0 auto;
}

/* Center Tree */
.tree-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    z-index: 2;
    animation: treeGrow 1.5s ease-out;
}

@keyframes treeGrow {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.tree-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Highlight Items */
.highlight-item {
    position: absolute;
    z-index: 3;
    animation: fadeInHighlight 1s ease-out backwards;
}

@keyframes fadeInHighlight {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #08472d;
    line-height: 1.2;
    margin-bottom: 8px;
}

.highlight-label {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #08472d;
    line-height: 1.3;
    margin: 0;
}

/* Position Each Highlight */
.highlight-top-left {
    top: 80px;
    left: 50px;
    text-align: right;
    animation-delay: 0.2s;
}

.highlight-top-right {
    top: 80px;
    right: 50px;
    text-align: left;
    animation-delay: 0.3s;
}

.highlight-middle-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    text-align: right;
    animation-delay: 0.4s;
}

.highlight-middle-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-align: left;
    animation-delay: 0.5s;
}

.highlight-bottom-left {
    bottom: 80px;
    left: 80px;
    text-align: right;
    animation-delay: 0.6s;
}

.highlight-bottom-right {
    bottom: 80px;
    right: 80px;
    text-align: left;
    animation-delay: 0.7s;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .tree-center {
        width: 600px;
        height: 600px;
    }

    .tree-highlights-wrapper {
        height: 800px;
    }

    .highlight-number {
        font-size: 34px;
    }

    .highlight-label {
        font-size: 20px;
    }
}

@media (max-width: 1366px) {
    .highlights-tree-container {
        padding: 0 60px;
    }

    .script-title {
        font-size: 60px;
    }

    .serif-title {
        font-size: 48px;
    }

    .tree-center {
        width: 550px;
        height: 550px;
    }

    .tree-highlights-wrapper {
        height: 750px;
    }

    .highlight-number {
        font-size: 32px;
    }

    .highlight-label {
        font-size: 19px;
    }

    .highlight-top-left,
    .highlight-top-right {
        top: 60px;
    }

    .highlight-bottom-left,
    .highlight-bottom-right {
        bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .highlights-tree-section {
        padding: 80px 0 100px;
    }

    .highlights-tree-container {
        padding: 0 40px;
    }

    .highlights-header {
        margin-bottom: 60px;
    }

    .script-title {
        font-size: 50px;
    }

    .serif-title {
        font-size: 40px;
    }

    .tree-center {
        width: 450px;
        height: 450px;
    }

    .tree-highlights-wrapper {
        height: 650px;
    }

    .highlight-number {
        font-size: 28px;
    }

    .highlight-label {
        font-size: 17px;
    }

    .highlight-top-left {
        left: 30px;
    }

    .highlight-top-right {
        right: 30px;
    }

    .highlight-middle-left {
        left: 10px;
    }

    .highlight-middle-right {
        right: 10px;
    }

    .highlight-bottom-left {
        left: 50px;
        bottom: 50px;
    }

    .highlight-bottom-right {
        right: 50px;
        bottom: 50px;
    }
}

/* Mobile Layout - Tree on Top, Grid Below */
@media (max-width: 768px) {
    .highlights-tree-section {
        padding: 60px 0 60px;
    }

    .highlights-tree-container {
        padding: 0 20px;
    }

    .highlights-header {
        margin-bottom: 40px;
    }

    .script-title {
        font-size: 42px;
    }

    .serif-title {
        font-size: 34px;
    }

    /* Change to vertical layout */
    .tree-highlights-wrapper {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Tree at top */
    .tree-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 40px;
    }

    /* Grid layout for highlights */
    .highlight-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        text-align: center !important;
        width: 100%;
    }

    /* Create 2-column grid */
    .tree-highlights-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tree-center {
        grid-column: 1 / -1;
    }

    /* Highlights Grid Container */
    .highlight-top-left,
    .highlight-top-right,
    .highlight-middle-left,
    .highlight-middle-right,
    .highlight-bottom-left,
    .highlight-bottom-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 25px 15px;
        text-align: center !important;
    }

    /* Create wrapper for 2-column layout */
    .tree-highlights-wrapper::after {
        content: '';
        display: block;
        width: 100%;
        grid-column: 1 / -1;
    }

    /* Order items in 2x3 grid */
    .highlight-top-left {
        order: 2;
    }

    .highlight-top-right {
        order: 3;
    }

    .highlight-middle-left {
        order: 4;
    }

    .highlight-middle-right {
        order: 5;
    }

    .highlight-bottom-left {
        order: 6;
    }

    .highlight-bottom-right {
        order: 7;
    }

    .tree-center {
        order: 1;
    }

    .highlight-number {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .highlight-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .highlights-tree-section {
        padding: 50px 0 50px;
    }

    .script-title {
        font-size: 36px;
    }

    .serif-title {
        font-size: 28px;
    }

    .tree-center {
        max-width: 320px;
        margin-bottom: 30px;
    }

    .highlight-number {
        font-size: 24px;
    }

    .highlight-label {
        font-size: 15px;
    }

    .highlight-top-left,
    .highlight-top-right,
    .highlight-middle-left,
    .highlight-middle-right,
    .highlight-bottom-left,
    .highlight-bottom-right {
        padding: 20px 10px;
    }
}

.tree-highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 👈 2 in a row */
    gap: 20px 10px;
    /* row-gap | column-gap */
}

/* amen ities */
/* Amenities Joy Section */
.amenities-joy-section {
    position: relative;
    background: #f1dbbb;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(210, 180, 140, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(222, 184, 135, 0.3) 0%, transparent 50%);
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Vintage texture overlay */
.amenities-joy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.amenities-joy-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    position: relative;
    z-index: 1;
}

/* Decorative Leaf Left */
.leaf-decoration-left {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 180px;
    opacity: 0.6;
    z-index: 1;
    animation: floatLeaves 7s ease-in-out infinite;
}

.leaf-decoration-left img {
    width: 100%;
    height: auto;
}

/* Section Header */
.amenities-joy-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.amenities-joy-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 35px;
}

.script-discover {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
}

.serif-joy {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    text-transform: uppercase;
}

.script-nature {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 65px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
}

.amenities-joy-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #08472d;
    max-width: 1200px;
    margin: 0 auto;
}

/* Amenities Grid */
.amenities-joy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

/* Amenity Card */
.amenity-joy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: fadeInUp 0.8s ease-out backwards;
}

.amenity-joy-card:nth-child(1) {
    animation-delay: 0.1s;
}

.amenity-joy-card:nth-child(2) {
    animation-delay: 0.2s;
}

.amenity-joy-card:nth-child(3) {
    animation-delay: 0.3s;
}

.amenity-joy-card:nth-child(4) {
    animation-delay: 0.4s;
}

.amenity-joy-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Image Wrapper with Corners */
.amenity-joy-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.amenity-joy-card:hover .amenity-joy-image-wrapper {
    transform: translateY(-10px);
}

.amenity-joy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative Corners */
.amenity-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #d4b896;
}

.amenity-corner.top-left {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.amenity-corner.top-right {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 20px 0 0;
}

.amenity-corner.bottom-left {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 20px;
}

.amenity-corner.bottom-right {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

/* Amenity Name */
.amenity-joy-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #08472d;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* Pine Trees Decoration */
.pine-trees-decoration {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .amenities-joy-grid {
        gap: 35px;
    }

    .script-discover {
        font-size: 60px;
    }

    .serif-joy {
        font-size: 48px;
    }

    .script-nature {
        font-size: 58px;
    }

    .amenities-joy-description {
        font-size: 19px;
    }
}

@media (max-width: 1366px) {
    .amenities-joy-container {
        padding: 0 60px;
    }

    .amenities-joy-grid {
        gap: 30px;
    }

    .script-discover {
        font-size: 55px;
    }

    .serif-joy {
        font-size: 44px;
    }

    .script-nature {
        font-size: 52px;
    }

    .amenities-joy-description {
        font-size: 18px;
    }

    .amenity-joy-name {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .amenities-joy-section {
        padding: 80px 0 100px;
    }

    .amenities-joy-container {
        padding: 0 40px;
    }

    .amenities-joy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .script-discover {
        font-size: 50px;
    }

    .serif-joy {
        font-size: 40px;
    }

    .script-nature {
        font-size: 48px;
    }

    .amenities-joy-description {
        font-size: 17px;
    }

    .leaf-decoration-left {
        width: 150px;
        opacity: 0.5;
    }
}

/* Mobile Layout - 2 Cards per Row */
@media (max-width: 768px) {
    .amenities-joy-section {
        padding: 60px 0 80px;
    }

    .amenities-joy-container {
        padding: 0 20px;
    }

    .amenities-joy-header {
        margin-bottom: 50px;
    }

    .script-discover {
        font-size: 42px;
    }

    .serif-joy {
        font-size: 34px;
    }

    .script-nature {
        font-size: 40px;
    }

    .amenities-joy-description {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* 2 columns on mobile */
    .amenities-joy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }

    .amenity-corner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    .amenity-corner.top-left {
        border-radius: 15px 0 0 0;
    }

    .amenity-corner.top-right {
        border-radius: 0 15px 0 0;
    }

    .amenity-corner.bottom-left {
        border-radius: 0 0 0 15px;
    }

    .amenity-corner.bottom-right {
        border-radius: 0 0 15px 0;
    }

    .amenity-joy-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .leaf-decoration-left {
        width: 120px;
        opacity: 0.4;
        top: 30px;
    }

    .pine-trees-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .amenities-joy-section {
        padding: 50px 0 60px;
    }

    .script-discover {
        font-size: 36px;
    }

    .serif-joy {
        font-size: 28px;
    }

    .script-nature {
        font-size: 34px;
    }

    .amenities-joy-description {
        font-size: 15px;
    }

    .amenities-joy-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .amenity-joy-card {
        gap: 15px;
    }

    .amenity-corner {
        width: 25px;
        height: 25px;
    }

    .amenity-joy-name {
        font-size: 13px;
    }

    .leaf-decoration-left {
        width: 100px;
        top: 20px;
    }
}

/* strip */
/* Forest Strip Section */
.forest-strip-section {
    position: relative;
    width: 100%;
    background: #f1dbbb;
    overflow: hidden;
}

.forest-strip-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 39.84375%;
    /* 765/1920 = 0.3984375 */
    overflow: hidden;
}

.forest-strip-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.95;
}

/* Add subtle fade effect on top edge */
.forest-strip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(241, 219, 187, 0.8) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Add subtle fade effect on bottom edge */
.forest-strip-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, rgba(241, 219, 187, 0.8) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design - Maintains exact ratio on all devices */
@media (max-width: 1366px) {
    /* Ratio automatically maintained by padding-bottom percentage */
}

@media (max-width: 1024px) {
    /* Ratio automatically maintained by padding-bottom percentage */
}

@media (max-width: 768px) {

    /* Ratio automatically maintained by padding-bottom percentage */
    .forest-strip-section::before,
    .forest-strip-section::after {
        height: 20px;
    }
}

@media (max-width: 480px) {

    /* Ratio automatically maintained by padding-bottom percentage */
    .forest-strip-section::before,
    .forest-strip-section::after {
        height: 15px;
    }
}

/* connect */
/* Connectivity Section */
.connectivity-section {
    position: relative;
    background: #f1dbbb;
    padding: 100px 0;
    overflow: hidden;
}

.connectivity-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
}

/* Section Header */
.connectivity-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Fix for connectivity heading visibility */
.connectivity-fancy-heading {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.connectivity-fancy-heading span:nth-child(1) {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 65px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    margin-left: 0 !important;
}

.connectivity-fancy-heading span:nth-child(2) {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #08472d;
    line-height: 1.1;
    text-transform: uppercase;
    margin-left: 0 !important;
    width: auto !important;
}

.connectivity-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #08472d;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Connectivity Buttons Grid */
.connectivity-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.connectivity-button {
    background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
    border: 2px solid #d4b896;
    border-radius: 60px;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.connectivity-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 71, 47, 0.25);
    border-color: #e2c06a;
}

.connectivity-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.connectivity-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .connectivity-container {
        padding: 0 60px;
    }

    .connectivity-fancy-heading span:nth-child(1) {
        font-size: 55px;
    }

    .connectivity-fancy-heading span:nth-child(2) {
        font-size: 42px;
    }

    .connectivity-desc {
        font-size: 17px;
    }

    .connectivity-buttons-grid {
        gap: 30px 40px;
    }

    .connectivity-label {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .connectivity-section {
        padding: 80px 0;
    }

    .connectivity-container {
        padding: 0 40px;
    }

    .connectivity-fancy-heading span:nth-child(1) {
        font-size: 50px;
    }

    .connectivity-fancy-heading span:nth-child(2) {
        font-size: 38px;
    }

    .connectivity-desc {
        font-size: 16px;
    }

    .connectivity-buttons-grid {
        gap: 25px 35px;
    }

    .connectivity-button {
        padding: 20px 35px;
    }

    .connectivity-icon {
        font-size: 32px;
    }

    .connectivity-label {
        font-size: 17px;
    }
}

/* Mobile Layout - Single Column */
@media (max-width: 768px) {
    .connectivity-section {
        padding: 60px 0;
    }

    .connectivity-container {
        padding: 0 20px;
    }

    .connectivity-header {
        margin-bottom: 40px;
    }

    .connectivity-fancy-heading span:nth-child(1) {
        font-size: 40px;
    }

    .connectivity-fancy-heading span:nth-child(2) {
        font-size: 30px;
    }

    .connectivity-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Single column on mobile */
    .connectivity-buttons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connectivity-button {
        border-radius: 50px;
        padding: 18px 25px;
        gap: 20px;
    }

    .connectivity-icon {
        font-size: 30px;
    }

    .connectivity-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .connectivity-fancy-heading span:nth-child(1) {
        font-size: 35px;
    }

    .connectivity-fancy-heading span:nth-child(2) {
        font-size: 26px;
    }

    .connectivity-desc {
        font-size: 15px;
    }

    .connectivity-button {
        padding: 16px 20px;
    }

    .connectivity-icon {
        font-size: 28px;
    }

    .connectivity-label {
        font-size: 15px;
    }
}

/* floor plan */
/* Floor Plans Section */
.floor-plans-section {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.floor-plans-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
}

/* Section Header - Using existing highlights-header styles */
.floor-plans-section .highlights-header {
    text-align: center;
    margin-bottom: 70px;
}

.floor-plans-section .highlights-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.floor-plans-section .script-title {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    margin-bottom: 5px;
}

.floor-plans-section .serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    text-transform: uppercase;
}

/* Floor Plans Grid */
.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Floor Plan Card */
.floor-plan-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out backwards;
}

.floor-plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.floor-plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.floor-plan-card:nth-child(3) {
    animation-delay: 0.3s;
}

.floor-plan-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Floor Plan Image Wrapper */
.floor-plan-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.floor-plan-card:hover .floor-plan-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.floor-plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floor Plan Overlay - Always Visible */
.floor-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 71, 47, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
}

/* View Plan Button - Always Visible */
.view-plan-button {
    background: #f1dbbb;
    color: #08472d;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    border: 2px solid #d4b896;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.view-plan-button:hover {
    background: #ffffff;
    border-color: #e2c06a;
    transform: scale(1.05);
}

/* Floor Plan Title */
.floor-plan-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #08472d;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .floor-plans-grid {
        gap: 45px;
    }

    .floor-plans-section .script-title {
        font-size: 60px;
    }

    .floor-plans-section .serif-title {
        font-size: 48px;
    }

    .floor-plan-title {
        font-size: 22px;
    }

    .view-plan-button {
        font-size: 17px;
        padding: 14px 32px;
    }
}

@media (max-width: 1366px) {
    .floor-plans-container {
        padding: 0 60px;
    }

    .floor-plans-grid {
        gap: 40px;
    }

    .floor-plans-section .script-title {
        font-size: 55px;
    }

    .floor-plans-section .serif-title {
        font-size: 44px;
    }

    .floor-plan-title {
        font-size: 21px;
    }

    .view-plan-button {
        font-size: 16px;
        padding: 13px 30px;
    }
}

@media (max-width: 1024px) {
    .floor-plans-section {
        padding: 80px 0;
    }

    .floor-plans-container {
        padding: 0 40px;
    }

    .floor-plans-section .highlights-header {
        margin-bottom: 60px;
    }

    .floor-plans-section .script-title {
        font-size: 50px;
    }

    .floor-plans-section .serif-title {
        font-size: 40px;
    }

    .floor-plans-grid {
        gap: 35px;
    }

    .floor-plan-title {
        font-size: 20px;
    }

    .view-plan-button {
        font-size: 16px;
        padding: 12px 28px;
    }
}

/* Mobile Layout - Single Column */
@media (max-width: 768px) {
    .floor-plans-section {
        padding: 60px 0;
    }

    .floor-plans-container {
        padding: 0 20px;
    }

    .floor-plans-section .highlights-header {
        margin-bottom: 50px;
    }

    .floor-plans-section .script-title {
        font-size: 42px;
    }

    .floor-plans-section .serif-title {
        font-size: 34px;
    }

    /* Single column on mobile */
    .floor-plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floor-plan-image-wrapper {
        border-radius: 15px;
    }

    .floor-plan-title {
        font-size: 20px;
    }

    .view-plan-button {
        font-size: 16px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .floor-plans-section {
        padding: 50px 0;
    }

    .floor-plans-section .script-title {
        font-size: 36px;
    }

    .floor-plans-section .serif-title {
        font-size: 28px;
    }

    .floor-plans-grid {
        gap: 35px;
    }

    .floor-plan-title {
        font-size: 18px;
    }

    .view-plan-button {
        font-size: 15px;
        padding: 11px 25px;
    }
}

/* about */
/* Township Section */
.township-section {
    position: relative;
    background: #f1dbbb;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(210, 180, 140, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(222, 184, 135, 0.2) 0%, transparent 50%);
    padding: 100px 0;
    overflow: hidden;
}

/* Vintage texture */
.township-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.township-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    position: relative;
    z-index: 1;
}

.township-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Township Image Side */
.township-image-side {
    flex: 0 0 45%;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.township-image {
    width: 100%;
    height: auto;
    display: block;
    /* Remove border-radius and box-shadow to blend with background */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    /* Blend edges with background */
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 3%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0.8) 97%,
            rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 3%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0.8) 97%,
            rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 3%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0.8) 97%,
            rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 3%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            rgba(0, 0, 0, 0.8) 97%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
}

/* Township Text Side */
.township-text-side {
    flex: 1;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Township Title */
.township-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 40px;
}

.script-township {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 65px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
}

.serif-township {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #08472d;
    line-height: 1.1;
    text-transform: uppercase;
}

.script-township-small {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 58px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    align-self: flex-end;
}

/* Township Text Box */
.township-text-box {
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    border: 3px solid #d4b896;
    border-radius: 20px;
    padding: 50px 45px;
    position: relative;
    box-shadow: 0 15px 40px rgba(15, 71, 47, 0.2);
}

/* Decorative Corner Flourishes */
.township-text-box::before,
.township-text-box::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #d4b896;
}

.township-text-box::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.township-text-box::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

/* Decorative Ornaments */
.decorative-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.top-ornament {
    margin-bottom: 30px;
}

.bottom-ornament {
    margin-top: 30px;
    margin-bottom: 0;
}

/* Township Description */
.township-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .township-container {
        padding: 0 60px;
    }

    .township-content-wrapper {
        gap: 60px;
    }

    .script-township {
        font-size: 55px;
    }

    .serif-township {
        font-size: 42px;
    }

    .script-township-small {
        font-size: 50px;
    }

    .township-text-box {
        padding: 45px 40px;
    }

    .township-description {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .township-section {
        padding: 80px 0;
    }

    .township-container {
        padding: 0 40px;
    }

    .township-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .township-image-side {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
    }

    .township-text-side {
        width: 100%;
    }

    .script-township {
        font-size: 50px;
    }

    .serif-township {
        font-size: 38px;
    }

    .script-township-small {
        font-size: 45px;
    }

    .township-text-box {
        padding: 40px 35px;
    }

    .township-description {
        font-size: 16px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .township-section {
        padding: 60px 0;
    }

    .township-container {
        padding: 0 20px;
    }

    .township-content-wrapper {
        gap: 40px;
    }

    .township-image-side {
        max-width: 100%;
    }

    /* Center align title on mobile */
    .township-title {
        align-items: center;
        text-align: center;
        margin-bottom: 35px;
    }

    .script-township {
        font-size: 42px;
    }

    .serif-township {
        font-size: 32px;
    }

    .script-township-small {
        font-size: 40px;
        align-self: center;
    }

    .township-text-box {
        padding: 35px 30px;
    }

    .township-text-box::before,
    .township-text-box::after {
        width: 40px;
        height: 40px;
    }

    .township-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .decorative-ornament svg {
        width: 40px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .township-section {
        padding: 50px 0;
    }

    .township-content-wrapper {
        gap: 30px;
    }

    .script-township {
        font-size: 36px;
    }

    .serif-township {
        font-size: 28px;
    }

    .script-township-small {
        font-size: 34px;
    }

    .township-text-box {
        padding: 30px 25px;
        border-width: 2px;
    }

    .township-text-box::before,
    .township-text-box::after {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }

    .township-description {
        font-size: 15px;
    }

    .top-ornament,
    .bottom-ornament {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* about the developer */
/* Developer Section */
.developer-section {
    position: relative;
    background: #f1dbbb;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(210, 180, 140, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(222, 184, 135, 0.3) 0%, transparent 50%);
    padding: 100px 0;
    overflow: hidden;
}

/* Vintage texture */
.developer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.developer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    position: relative;
    z-index: 1;
}

/* Decorative Leaves Left */
.leaf-decoration-left-dev {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 180px;
    opacity: 0.6;
    z-index: 1;
    animation: floatLeaves 7s ease-in-out infinite;
}

@keyframes floatLeaves {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.leaf-decoration-left-dev img {
    width: 100%;
    height: auto;
}

/* Section Header */
.developer-section .highlights-header {
    text-align: center;
    margin-bottom: 70px;
}

.developer-section .highlights-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.developer-section .script-title {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    margin-bottom: 5px;
}

.developer-section .serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #08472d;
    line-height: 1;
    text-transform: uppercase;
}

/* Developer Content Wrapper */
.developer-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Statistics Side */
.developer-stats-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 60px;
}

.stats-row-top {
    justify-content: flex-start;
}

.stats-row-bottom {
    justify-content: center;
}

/* Stat Box */
.stat-box {
    text-align: left;
}

.stat-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    color: #08472d;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #08472d;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Developer Image Side */
.developer-image-side {
    flex: 0 0 48%;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Developer Image Frame */
.developer-image-frame {
    position: relative;
    width: 100%;
    border: 3px solid #d4b896;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Frame Corners */
.frame-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #d4b896;
}

.frame-top-left {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-radius: 15px 0 0 0;
}

.frame-top-right {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 15px 0 0;
}

.frame-bottom-left {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 15px;
}

.frame-bottom-right {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 15px 0;
}

.developer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .stat-number-large {
        font-size: 55px;
    }

    .stat-label-text {
        font-size: 13px;
    }

    .developer-section .script-title {
        font-size: 60px;
    }

    .developer-section .serif-title {
        font-size: 48px;
    }

    .stats-row {
        gap: 50px;
    }
}

@media (max-width: 1366px) {
    .developer-container {
        padding: 0 60px;
    }

    .developer-content-wrapper {
        gap: 60px;
    }

    .developer-section .script-title {
        font-size: 55px;
    }

    .developer-section .serif-title {
        font-size: 44px;
    }

    .stat-number-large {
        font-size: 50px;
    }

    .stats-row {
        gap: 40px;
    }

    .developer-stats-side {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .developer-section {
        padding: 80px 0;
    }

    .developer-container {
        padding: 0 40px;
    }

    .developer-content-wrapper {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .developer-stats-side {
        flex: 1;
        width: 100%;
    }

    .developer-image-side {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
    }

    .developer-section .script-title {
        font-size: 50px;
    }

    .developer-section .serif-title {
        font-size: 40px;
    }

    .stat-number-large {
        font-size: 45px;
    }

    .stats-row {
        gap: 35px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .developer-section {
        padding: 60px 0;
    }

    .developer-container {
        padding: 0 20px;
    }

    .developer-section .highlights-header {
        margin-bottom: 50px;
    }

    .developer-section .script-title {
        font-size: 42px;
    }

    .developer-section .serif-title {
        font-size: 34px;
    }

    .developer-content-wrapper {
        gap: 40px;
    }

    .developer-image-side {
        max-width: 100%;
    }

    /* Stack stats vertically on mobile */
    .stats-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stats-row-top,
    .stats-row-bottom {
        justify-content: center;
    }

    .stat-box {
        text-align: center;
        max-width: 300px;
    }

    .stat-number-large {
        font-size: 48px;
    }

    .stat-label-text {
        font-size: 13px;
    }

    .developer-stats-side {
        gap: 30px;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .leaf-decoration-left-dev {
        width: 150px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .developer-section {
        padding: 50px 0;
    }

    .developer-section .script-title {
        font-size: 36px;
    }

    .developer-section .serif-title {
        font-size: 28px;
    }

    .stat-number-large {
        font-size: 42px;
    }

    .stat-label-text {
        font-size: 12px;
    }

    .developer-image-frame {
        padding: 12px;
        border-width: 2px;
    }

    .frame-corner {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
}

/* footer */
/* Footer Section */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    padding: 40px 0 30px;
    overflow: hidden;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
    position: relative;
    z-index: 1;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-bottom: 25px;
}

.footer-disclaimer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(241, 219, 187, 0.85);
    text-align: center;
    margin: 0;
}

.footer-disclaimer strong {
    color: #f1dbbb;
    font-weight: 600;
}

/* Footer RERA */
.footer-rera {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(241, 219, 187, 0.2);
    border-bottom: 1px solid rgba(241, 219, 187, 0.2);
    margin-bottom: 20px;
}

.footer-rera p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f1dbbb;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(241, 219, 187, 0.75);
    margin: 0;
}

.footer-copyright a {
    color: #f1dbbb;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .footer-container {
        padding: 0 60px;
    }

    .footer-disclaimer p {
        font-size: 11px;
    }

    .footer-rera p {
        font-size: 13px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .footer-section {
        padding: 35px 0 25px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .footer-disclaimer {
        margin-bottom: 20px;
    }

    .footer-disclaimer p {
        font-size: 11px;
        line-height: 1.5;
    }

    .footer-rera {
        padding: 18px 0;
        margin-bottom: 18px;
    }

    .footer-rera p {
        font-size: 13px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-disclaimer {
        margin-bottom: 18px;
    }

    .footer-disclaimer p {
        font-size: 10px;
        line-height: 1.5;
        text-align: left;
    }

    .footer-rera {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .footer-rera p {
        font-size: 12px;
    }

    .footer-copyright p {
        font-size: 11px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 25px 0 18px;
    }

    .footer-disclaimer p {
        font-size: 9px;
    }

    .footer-rera p {
        font-size: 11px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}

/* Add this CSS after your footer-copyright styles */

/* MyOwner Credit */
.footer-credit {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;

}

.footer-credit p {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(241, 219, 187, 0.6);
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-credit a {
    color: rgba(241, 219, 187, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: #f1dbbb;
    text-decoration: underline;
}

/* Responsive Design for Credit */
@media (max-width: 1024px) {
    .footer-credit {
        margin-top: 18px;
        padding-top: 12px;
    }

    .footer-credit p {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .footer-credit {
        margin-top: 15px;
        padding-top: 10px;
    }

    .footer-credit p {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .footer-credit p {
        font-size: 8px;
    }
}

/* floating css */
/* Floating CTA Button - Enhanced Version */
.floating-cta-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9998;
    animation: floatIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.5) rotate(-10deg);
    }

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

.cta-main-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #e8d4b8 0%, #d4b896 25%, #e2c06a 50%, #f4e5c2 75%, #d4b896 100%);
    background-size: 300% 300%;
    border: none;
    border-radius: 60px;
    box-shadow:
        0 10px 40px rgba(212, 184, 150, 0.6),
        0 0 0 4px rgba(15, 71, 47, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 2px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: goldShimmer 4s infinite ease-in-out, gentleBounce 3s infinite ease-in-out;
    overflow: hidden;
}

@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 50%;
    }
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cta-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.7s ease;
}

.cta-main-button:hover::before {
    left: 100%;
}

.cta-main-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 20px 60px rgba(212, 184, 150, 0.8),
        0 0 0 6px rgba(26, 89, 55, 0.4),
        inset 0 -2px 12px rgba(0, 0, 0, 0.2),
        inset 0 3px 4px rgba(255, 255, 255, 0.5);
    animation: goldShimmer 2s infinite ease-in-out;
}

.cta-main-button:active {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 12px 35px rgba(212, 184, 150, 0.7),
        0 0 0 5px rgba(15, 71, 47, 0.35);
}

/* Enhanced Pulsing Effect */
.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 60px;
    border: 3px solid rgba(226, 192, 106, 0.6);
    animation: enhancedPulse 2.5s infinite ease-out;
    pointer-events: none;
}

@keyframes enhancedPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        border-width: 3px;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
        border-width: 2px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-width: 1px;
    }
}

/* Icon Wrapper with Sparkle Effect */
.cta-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 4px 12px rgba(15, 71, 47, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.cta-icon-wrapper::before {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-main-button:hover .cta-icon-wrapper {
    background: linear-gradient(135deg, #1a5937 0%, #2d7a4f 100%);
    transform: rotate(360deg) scale(1.1);
    box-shadow:
        0 6px 16px rgba(15, 71, 47, 0.7),
        inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.cta-main-button:hover .cta-icon-wrapper::before {
    opacity: 1;
    animation: sparkle 0.6s ease-in-out;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

.cta-icon {
    color: #f1dbbb;
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.cta-main-button:hover .cta-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Text Wrapper with Gradient */
.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-main-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 50%, #0f472f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-main-button:hover .cta-main-text {
    transform: translateX(3px);
    letter-spacing: 1.2px;
}

.cta-sub-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a5937;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cta-main-button:hover .cta-sub-text {
    transform: translateX(3px);
    opacity: 1;
    color: #0f472f;
}

/* Decorative Corner Accent */
.cta-main-button::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #0f472f;
    opacity: 0;
    transition: all 0.4s ease;
}

.cta-main-button:hover::after {
    opacity: 1;
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-cta-button {
        right: 20px;
        bottom: 20px;
    }

    .cta-main-button {
        padding: 16px 28px;
        gap: 12px;
    }

    .cta-icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .cta-icon {
        width: 20px;
        height: 20px;
    }

    .cta-main-text {
        font-size: 18px;
    }

    .cta-sub-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .floating-cta-button {
        right: 15px;
        bottom: 80px;
    }

    .cta-main-button {
        padding: 14px 24px;
        gap: 10px;
    }

    .cta-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .cta-icon {
        width: 18px;
        height: 18px;
    }

    .cta-main-text {
        font-size: 17px;
    }

    .cta-sub-text {
        font-size: 12px;
    }

    .cta-main-button::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-cta-button {
        right: 12px;
        bottom: 75px;
    }

    .cta-main-button {
        padding: 12px 20px;
        gap: 10px;
        border-radius: 50px;
    }

    .cta-icon-wrapper {
        width: 34px;
        height: 34px;
    }

    .cta-icon {
        width: 17px;
        height: 17px;
    }

    .cta-main-text {
        font-size: 16px;
    }

    .cta-sub-text {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .cta-sub-text {
        font-size: 10px;
    }

    .cta-main-button {
        padding: 11px 18px;
        gap: 8px;
    }

    .cta-main-text {
        font-size: 15px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .cta-main-button {
        box-shadow:
            0 10px 40px rgba(212, 184, 150, 0.7),
            0 0 0 4px rgba(26, 89, 55, 0.4),
            inset 0 -2px 8px rgba(0, 0, 0, 0.2),
            inset 0 2px 2px rgba(255, 255, 255, 0.5);
    }
}

/* Accessibility - Focus State */
.cta-main-button:focus {
    outline: none;
    box-shadow:
        0 20px 60px rgba(212, 184, 150, 0.8),
        0 0 0 6px rgba(26, 89, 55, 0.5),
        0 0 0 8px rgba(241, 219, 187, 0.3);
}

/* Print Media - Hide Button */
@media print {
    .floating-cta-button {
        display: none;
    }
}

/* popup form */
/* CTA Popup Overlay */
.cta-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 71, 47, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.cta-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CTA Popup Container - Compact Version */
.cta-popup-container {
    position: relative;
    background: linear-gradient(135deg, #f1dbbb 0%, #e8d4b8 100%);
    border-radius: 25px;
    padding: 35px 30px;
    max-width: 420px;
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(212, 184, 150, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.cta-popup-overlay.active .cta-popup-container {
    transform: scale(1);
}

/* Close Button */
.cta-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    color: #f1dbbb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(15, 71, 47, 0.3);
}

.cta-popup-close svg {
    width: 18px;
    height: 18px;
}

.cta-popup-close:hover {
    background: linear-gradient(135deg, #1a5937 0%, #2d7a4f 100%);
    transform: rotate(90deg) scale(1.1);
}

/* Logo - Compact */
.cta-popup-logo {
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(15, 71, 47, 0.3);
}

.cta-popup-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Popup Header - Compact */
.cta-popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.cta-popup-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}

.title-script {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0f472f;
    line-height: 1;
}

.title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #1a5937;
    line-height: 1;
    text-transform: uppercase;
}

.cta-popup-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #0f472f;
    opacity: 0.8;
}

/* Form Styles - Compact */
.cta-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f472f;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid rgba(15, 71, 47, 0.2);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #0f472f;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(15, 71, 47, 0.05);
}

.form-input::placeholder {
    color: rgba(15, 71, 47, 0.4);
    font-size: 13px;
}

.form-input:focus {
    outline: none;
    border-color: #1a5937;
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 3px rgba(26, 89, 55, 0.15),
        inset 0 2px 4px rgba(15, 71, 47, 0.1);
}

.form-input.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.form-error {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #dc3545;
    display: none;
    margin-top: 2px;
}

.form-error.active {
    display: block;
}

/* Submit Button - Compact */
.form-submit-btn {
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    border: none;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #f1dbbb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow:
        0 6px 20px rgba(15, 71, 47, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #1a5937 0%, #2d7a4f 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(15, 71, 47, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.submit-icon {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.form-submit-btn:hover .submit-icon {
    transform: translateX(4px);
}

/* Decorative Elements - Minimal */
.popup-decoration {
    position: absolute;
    opacity: 0.2;
    pointer-events: none;
}

.decoration-left {
    top: 10px;
    left: -15px;
    width: 80px;
    height: 80px;
}

.decoration-right {
    bottom: 10px;
    right: -15px;
    width: 80px;
    height: 80px;
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-popup-container {
        padding: 30px 25px;
        max-width: 380px;
    }

    .cta-popup-logo {
        padding: 10px 18px;
        margin-bottom: 18px;
    }

    .cta-popup-logo img {
        height: 32px;
    }

    .title-script {
        font-size: 28px;
    }

    .title-serif {
        font-size: 22px;
    }

    .cta-popup-subtitle {
        font-size: 12px;
    }

    .form-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .form-submit-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-popup-overlay {
        padding: 15px;
    }

    .cta-popup-container {
        padding: 25px 20px;
        max-width: 340px;
        border-radius: 20px;
    }

    .cta-popup-close {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }

    .cta-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .cta-popup-logo {
        padding: 8px 15px;
        margin-bottom: 15px;
    }

    .cta-popup-logo img {
        height: 28px;
    }

    .cta-popup-header {
        margin-bottom: 20px;
    }

    .title-script {
        font-size: 26px;
    }

    .title-serif {
        font-size: 20px;
    }

    .cta-popup-subtitle {
        font-size: 12px;
    }

    .cta-popup-form {
        gap: 12px;
    }

    .form-group {
        gap: 5px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input {
        padding: 10px 13px;
        font-size: 13px;
        border-radius: 10px;
    }

    .form-input::placeholder {
        font-size: 12px;
    }

    .form-submit-btn {
        padding: 11px 20px;
        font-size: 14px;
        border-radius: 35px;
    }

    .popup-decoration {
        display: none;
    }
}

@media (max-width: 360px) {
    .cta-popup-container {
        max-width: 310px;
        padding: 22px 18px;
    }

    .title-script {
        font-size: 24px;
    }

    .title-serif {
        font-size: 18px;
    }
}

/* Loading State */
.form-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.form-submit-btn.loading .submit-text::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {

    0%,
    20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60%,
    100% {
        content: '...';
    }
}

/* Smooth centering */
@media (min-height: 600px) {
    .cta-popup-overlay {
        align-items: center;
    }
}

/* styles.css */
/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-dark: #0f472f;
    --forest-light: #1a7a4f;
    --cream: #f1dbbb;
    --white: #ffffff;
    --text-dark: #08472d;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
    height: auto;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
}




.banner-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.banner-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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


/* Typography */
.fancy-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 30px;
    padding: 0;
}

.fancy-heading span:nth-child(1),
.fancy-heading span:nth-child(3) {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 1.6px;
    color: var(--text-dark);
    line-height: 1;
}

.fancy-heading span:nth-child(2) {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-left: auto;
    width: 80%;
}

.fancy-heading span:nth-child(3) {
    margin-left: auto;
    width: 50%;
}

/* Overview Section */
.overview-section {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L60 30 L80 30 L65 42 L70 60 L50 48 L30 60 L35 42 L20 30 L40 30 Z' fill='%23f1dbbb' opacity='0.05'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.overview-frame {
    text-align: center;
    width: 80%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.overview-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    width: 90%;
    margin: 30px auto 0;
}

.leaf-pattern-right {
    width: 40%;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 1;
    opacity: 0.3;
}

/* Highlights Section */
.highlights-section {
    position: relative;
    padding: 80px 0;
    background: var(--cream);
}

.highlights-heading {
    width: 40%;
    margin: auto;
}

.fancy-heading.project_highlights span:nth-child(1) {
    margin-left: 100px;
}

.highlights-diagram {
    position: relative;
    width: 100%;
    max-width: 1443px;
    height: 850px;
    margin: 50px auto 0;
}

.highlights-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 823px;
    height: 823px;
}

.tree-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-point {
    position: absolute;
    text-align: center;
}

.highlight-point h3 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: var(--text-dark);
    letter-spacing: 1.38px;
    margin-bottom: 5px;
    font-weight: 400;
}

.highlight-point p {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: var(--text-dark);
    font-weight: 400;
}

.highlight-top-left {
    top: 56px;
    left: calc(50% - 500px);
    text-align: end;
}

.highlight-top-right {
    top: 56px;
    right: calc(50% - 600px);
    text-align: left;
}

.highlight-middle-left {
    top: 276px;
    left: calc(50% - 550px);
    text-align: end;
}

.highlight-middle-right {
    top: 276px;
    right: calc(50% - 550px);
    text-align: left;
}

.highlight-bottom-left {
    bottom: 147px;
    left: calc(50% - 450px);
    text-align: end;
}

.highlight-bottom-right {
    bottom: 147px;
    right: calc(50% - 450px);
    text-align: left;
}

/* Amenities Section */
.amenities-section {
    position: relative;
    padding: 120px 0 100px 0;
    overflow: hidden;
}

.amenities-heading {
    width: 50%;
    margin: auto;
}

.amenities-heading.fancy-heading span:nth-child(1) {
    margin-left: 120px;
}

.amenities-heading.fancy-heading span:nth-child(3) {
    margin-top: -10px;
    margin-right: -30px;
    width: 40%;
}

.section-description {
    font-size: 21px;
    color: var(--text-dark);
    max-width: 90%;
    margin: 30px auto 0;
    line-height: 1.6;
    text-align: center;
}

.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    margin-top: 70px;
}

.amenity-card {
    width: 15%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.amenity-image {
    width: 100%;
    transition: transform 0.4s ease;
}

.amenity-image:hover {
    transform: translateY(-12px);
}

.amenity-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #000;
    letter-spacing: 1.12px;
    font-weight: 400;
    margin-top: 30px;
}

/* Connectivity Section */
.connectivity-section {
    padding: 100px 0;
    position: relative;
    background: var(--forest-dark);
}

.connectivity-section .fancy-heading span {
    color: var(--cream);
}

.connectivity-section .highlights-heading {
    width: 50%;
    margin: auto;
}

.connectivity-section .highlights-heading.fancy-heading span:nth-child(1) {
    margin-left: 90px;
}

.section-description.connectivity-desc {
    color: var(--cream);
    text-align: center;
}

.connectivity-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1620px;
    margin: 64px auto 0;
}

.connectivity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
}

.connectivity-btn {
    background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
    border: 1px solid #e2c06a;
    border-radius: 70px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease;
}

.connectivity-btn:hover {
    transform: translateY(-3px);
}

.connectivity-icon {
    width: 40px;
    height: 40px;
    font-size: 30px;
}

.connectivity-btn span {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 0.84px;
    text-align: left;
    flex: 1;
}

/* Plans Section */
.unit-plans-section {
    padding: 80px 0;
    background: var(--cream);
}

.plan-heading {
    width: 20%;
    margin: auto;
}

.plan-heading.fancy-heading span:nth-child(1) {
    margin-left: 35px;
}

.plans-content {
    text-align: center;
    margin-top: 50px;
}

.plans-cta {
    font-size: 1.3rem;
    color: var(--forest-dark);
    margin: 2rem 0;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--forest-dark);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--forest-light);
}

/* Township Section */
.township-section {
    padding: 120px 0;
}

.township-heading {
    width: 50%;
    margin: auto;
}

.township-heading.fancy-heading span:nth-child(1) {
    margin-left: 70px;
}

.township-heading.fancy-heading span:nth-child(2) {
    margin-top: 10px;
}

.township-heading.fancy-heading span:nth-child(3) {
    width: 30%;
}

.township-desc {
    font-size: 20px;
    line-height: 1.6;
    width: 80%;
    margin: 30px auto;
    text-align: center;
    color: var(--text-dark);
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 80px 0;
    background: var(--cream);
}

.statistics-section .highlights-heading {
    width: 40%;
    margin: auto;
}

.statistics-section .highlights-heading.fancy-heading span:nth-child(1) {
    margin-left: 80px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.stat-item {
    text-align: left;
    min-width: 15%;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--text-dark);
    letter-spacing: 1.4863px;
    margin-bottom: 15px;
    font-weight: 400;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Footer Section */
.footer-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--forest-dark);
    padding: 80px 0;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    text-align: center;
    color: white;
    margin: auto;
}

.footer-phone {
    font-size: 2rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: var(--white);
    transform: scale(1.05);
}

.footer-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    margin: 20px 0;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    margin-top: 40px;
    opacity: 0.8;
}

.footer-copyright a {
    color: var(--cream);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 15px 40px;
    }

    .banner-text {
        width: 70%;
    }

    .banner-text h1 {
        font-size: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        transition: 0.4s ease;
        z-index: 999;
        background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
        padding-top: 30px;
    }

    .nav-menu.active {
        right: 0;
    }

    .highlights-center {
        width: 600px;
        height: 600px;
    }

    .highlights-diagram {
        height: 650px;
    }

    .amenity-card {
        width: 30%;
    }

    .connectivity-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlights-heading,
    .amenities-heading,
    .township-heading,
    .statistics-section .highlights-heading {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .banner-wrapper {
        height: 500px;
    }

    .banner-text {
        width: 90%;
    }

    .banner-text h1 {
        font-size: 40px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .fancy-heading span:nth-child(1),
    .fancy-heading span:nth-child(3) {
        font-size: 40px;
    }

    .fancy-heading span:nth-child(2) {
        font-size: 30px;
    }

    .highlights-center {
        width: 400px;
        height: 400px;
    }

    .highlights-diagram {
        height: 500px;
    }

    .highlight-point h3 {
        font-size: 22px;
    }

    .highlight-point p {
        font-size: 16px;
    }

    .amenity-card {
        width: 45%;
    }

    .highlights-heading,
    .amenities-heading,
    .plan-heading,
    .township-heading,
    .statistics-section .highlights-heading {
        width: 90%;
    }

    .stat-item {
        min-width: 40%;
    }
}

/* new hero for mobile */
/* Hero Section with Image Slider */
#banner-section {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 10px;

}

.banner-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

/* Desktop slides - visible by default */
.desktop-slide {
    display: block;
}

/* Mobile slides - hidden by default */
.mobile-slide {
    display: none;
}

/* Mobile specific styles */
@media (max-width: 768px) {

    /* Hide desktop slides */
    .desktop-slide {
        display: none;
    }

    /* Show mobile slides */
    .mobile-slide {
        display: block;
    }

    /* Adjust banner height for mobile aspect ratio (667 × 998) */
    .banner-wrapper {
        height: 0;
        padding-bottom: 149.62%;
        /* 998/667 = 1.4962 */
    }

    .banner-image-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    #banner-section {
        padding-top: 30px;
    }
}

/* new header */
/* Floating Header */
.floating-header {
    position: fixed;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1600px;
    z-index: 9999;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.floating-header-container {
    background: linear-gradient(135deg, rgba(15, 71, 47, 0.95) 0%, rgba(26, 89, 55, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 32px rgba(15, 71, 47, 0.3);
    border: 1px solid rgba(241, 219, 187, 0.2);
}

/* Logo Section */
.header-logo-section {
    flex-shrink: 0;
}

.header-logo-link {
    display: block;
    height: 45px;
}

.header-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.header-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header-nav-item {
    margin: 0;
}

.header-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #f1dbbb;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f1dbbb;
    transition: width 0.3s ease;
}

.header-nav-link:hover {
    color: #ffffff;
}

.header-nav-link:hover::after {
    width: 100%;
}

/* Contact Buttons */
.header-contact-section {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: #f1dbbb;
    color: #0f472f;
}

.call-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 219, 187, 0.4);
}

.header-contact-btn svg {
    flex-shrink: 0;
}

.btn-text {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: #f1dbbb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0f472f 0%, #1a5937 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    z-index: 10001;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(241, 219, 187, 0.2);
}

.sidebar-logo {
    height: 35px;
    width: auto;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #f1dbbb;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-nav {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #f1dbbb;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(241, 219, 187, 0.1);
    color: #ffffff;
}

.mobile-sidebar-contact {
    padding: 20px;
    border-top: 1px solid rgba(241, 219, 187, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-mobile {
    background: #25D366;
    color: #ffffff;
}

.call-mobile {
    background: #f1dbbb;
    color: #0f472f;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10000;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .floating-header-container {
        padding: 10px 25px;
    }

    .header-nav-list {
        gap: 30px;
    }

    .header-nav-link {
        font-size: 14px;
    }

    .header-contact-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .header-logo-link {
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .floating-header {
        top: 15px;
        width: 96%;
    }

    .header-navigation {
        display: none;
    }

    .header-contact-section {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .floating-header-container {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .floating-header {
        top: 1px;
        width: 94%;
    }

    .floating-header-container {
        border-radius: 50px;
        padding: 10px 15px;
    }

    .header-logo-link {
        height: 35px;
    }

    .mobile-sidebar {
        width: 280px;
    }
}