html {
    scroll-behavior: smooth;
}

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

:root {
    --g: #1B4332;
    --gm: #2D6A4F;
    --gl: #52B788;
    --gp: #D8F3DC;
    --pk: #FF6B9D;
    --pd: #C9184A;
    --w: #fff
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fcf8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 56px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcf8ed;
    padding: 0 18px 10px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    transition: all 0.3s ease;
    z-index: 210;
}

.nav-logo img {
    height: 58px;
    width: auto;
    display: block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    padding-bottom: 20px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}



.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 12px;
    transition: color .2s;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.nav-links a:hover {
    color: var(--g)
}

.nav-cta {
    background: linear-gradient(135deg, #ff9233 0%, #ff5233 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 82, 51, 0.3);
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 82, 51, 0.4);
    filter: brightness(1.05);
}

/* FLOATING WHATSAPP */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background-color: #20ba5a;
}

.wa-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .wa-float span {
        display: none;
    }

    .wa-float {
        padding: 16px;
        bottom: 20px;
        right: 20px;
    }
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease-out;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

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


.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1
}

.s1 {
    background-image: url('../assets/images/hero/h1.png');
}

.s2 {
    background-image: url('../assets/images/hero/h2.png');
}

.s3 {
    background-image: url('../assets/images/hero/h3.png');
}

.deco {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    margin: 64px auto 0;
    padding: 0 40px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.hero-left {
    flex: 1;
    max-width: 520px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 22px
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #74C69D;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero-main-group {
    display: block;
}

.mobile-count,
.mobile-desc {
    display: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 82px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0;
    display: block;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 82px;
    background: linear-gradient(135deg, #FF0072 0%, #FFB6C1 50%, #FF0072 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-left: 0;
    margin-bottom: 32px;
    margin-top: -5px;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding-bottom: 10px;
}












@keyframes shine {
    to {
        background-position: 200% center;
    }
}


.stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px
}

.count-box {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 14px 22px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.count-box:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .4);
}


.count-num {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.count-lab {
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    margin-top: 2px
}

.hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #74C69D;
    color: #1B4332;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s;
    margin-top: 28px;
    text-decoration: none
}

.btn-p:hover {
    background: #52B788;
    transform: translateY(-2px)
}

.arr {
    transition: transform .2s
}

.btn-p:hover .arr {
    transform: translateX(4px)
}

.r-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 60px 50px;
    width: 520px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.r-card-ttl {
    grid-column: span 2;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1B4332;
    margin-bottom: 32px;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

.cat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 67, 50, 0.05);
    transition: all 0.3s ease;
}

.cat-item:hover {
    border-bottom-color: #ff6b9d;
    transform: translateX(4px);
}

.cat-ico {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(116, 198, 157, 0.1);
    border-radius: 14px;
    /* More modern squircle shape */
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 8px;
}

.cat-item:hover .cat-ico {
    background: #ff6b9d;
    transform: rotate(-10deg) scale(1.1);
}

.cat-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cat-item:hover .cat-ico img {
    filter: brightness(0) invert(1);
    /* Make icons white on hover if they are solid */
}

.cat-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1B4332;
    opacity: 0.8;
}

.cat-item:hover .cat-lbl {
    opacity: 1;
    color: #1B4332;
}

.cat-arr {
    display: none;
}

.dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px
}

/* SECTION 2 */
.s2-wrap {
    padding: 100px 0;
    background: #fff
}

.inner {
    max-width: 1400px;
    /* Modern, expansive wide-screen layout */
    margin: 0 auto;
    padding: 0 60px;
}

.flex-row {
    display: flex;
    gap: 48px;
    align-items: flex-start
}

.cat-left {
    flex-shrink: 0;
    width: 210px;
    padding-top: 4px
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #74C69D;
    margin-bottom: 10px
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.2;
    margin-bottom: 14px
}

.sec-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #1B4332;
    color: #1B4332;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: all .2s;
    text-decoration: none
}

.btn-o:hover {
    background: #1B4332;
    color: #fff
}

.cat-right {
    flex: 1;
    overflow: hidden
}

.c-track {
    display: flex;
    gap: 18px;
    transition: transform .4s ease
}

.c-card {
    flex-shrink: 0;
    width: 210px;
    height: 310px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.cc-bg {
    position: absolute;
    inset: 0
}

.cc1 {
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.2) 40%, transparent 80%), url('/assets/images/Catalog/imperialGreenHaven.jpeg') center/cover no-repeat
}

.cc2 {
    background: linear-gradient(to top, rgba(160, 100, 30, 0.9), rgba(160, 100, 30, 0.2) 40%, transparent 80%), url('/assets/images/Catalog/GoldenBloom.jpeg') center/cover no-repeat
}

.cc3 {
    background: linear-gradient(to top, rgba(100, 100, 100, 0.9), rgba(100, 100, 100, 0.2) 40%, transparent 80%), url('/assets/images/Catalog/WhiteAura.jpeg') center/cover no-repeat
}

.cc4 {
    background: linear-gradient(to top, rgba(140, 140, 140, 0.9), rgba(140, 140, 140, 0.2) 40%, transparent 80%), url('/assets/images/Catalog/DreamyWhite.jpeg') center/cover no-repeat
}

.cc5 {
    background: linear-gradient(to top, rgba(80, 40, 120, 0.9), rgba(80, 40, 120, 0.2) 40%, transparent 80%), url('/assets/images/Catalog/VelvetVioletLiving.jpeg') center/cover no-repeat
}

.cc-deco {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2)
}

.cc-deco::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .13)
}

.cc-cnt {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px
}

.cc-yr {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px
}

.cc-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px
}

.cc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cc-btn {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer
}

.cc-ar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px
}

.c-nav {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-end
}

.nbtn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all .2s;
    color: #374151
}

.nbtn:hover {
    border-color: #1B4332;
    color: #1B4332
}

@media (max-width: 768px) {
    .c-nav {
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
    }

    .nbtn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* SECTION 3 */
.s3-wrap {
    background: #F0FDF4;
    padding: 100px 0
}

.c-left {
    flex-shrink: 0;
    width: 260px
}

.svc-brand {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px
}

.svc-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #C9184A;
    line-height: 1.08;
    margin-bottom: 14px
}

.svc-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.7
}

.c-right {
    flex: 1
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-row input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s
}

.form-row input:focus {
    border-color: #2D6A4F
}

.form-row input::placeholder {
    color: #9ca3af
}

.wa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.tgl {
    width: 42px;
    height: 22px;
    background: #e5e7eb;
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tgl.active {
    background: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.tgl-th {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tgl.active .tgl-th {
    left: 23px;
}

.wa-lbl {
    font-size: 12px;
    color: #374151
}

.cb-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.cb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #374151
}

.cb-item input {
    width: 15px;
    height: 15px;
    accent-color: #2D6A4F;
    cursor: pointer
}

.sel-row {
    margin-bottom: 20px;
}

.sel-row select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.sel-row select:focus {
    border-color: #2D6A4F;
}

.form-note {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 18px;
    line-height: 1.55
}

.btn-sub {
    background: #1B4332;
    color: #fff;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    float: right;
    transition: background .2s
}

.btn-sub:hover {
    background: #2D6A4F
}

/* SECTION 4 */
.s4-wrap {
    padding: 80px 0 20px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.s4-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px
}

.s4-ttl {
    font-size: 22px;
    font-weight: 700;
    color: #111
}

.p-overflow {
    overflow: hidden;
    height: 680px;
    position: relative;
    margin: 20px 0;
}

.p-track {
    display: flex;
    transition: transform .6s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-card {
    flex-shrink: 0;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 20px;
}

.p-cnt {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    gap: 40px;
}

@keyframes floatPot {

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

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

.floating-pot {
    animation: floatPot 4s ease-in-out infinite;
}

.pc1 .p-cnt,
.pc2 .p-cnt,
.pc3 .p-cnt {
    background: #F9F9F9;
}

.p-img-std {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pillar-accent {
    position: absolute;
    width: 360px;
    height: 150%;
    background: #FFCC00;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
    left: 50%;
    top: -25%;
    transform: translateX(-50%) rotate(30deg);
}

.p-lft {
    flex: 1
}

.p-eye {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(27, 67, 50, 0.6);
    margin-bottom: 10px
}

.p-name {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 700;
    color: #1B4332;
    line-height: 1;
    margin-bottom: 12px
}

.p-hl {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #74C69D;
    margin-bottom: 6px
}

.p-sub {
    font-size: 18px;
    color: rgba(27, 67, 50, 0.8);
    margin-bottom: 20px
}

.p-feats {
    display: flex;
    gap: 18px;
    margin-bottom: 24px
}

.f-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.f-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center
}

.f-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .65);
    text-align: center
}

.btn-prd {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(27, 67, 50, .45);
    color: #1B4332;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: background .2s
}

.btn-prd:hover {
    background: rgba(27, 67, 50, .05)
}

.p-img {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center
}

/* FOOTER */
.footer {
    background: #0D2818;
    padding: 60px 0 28px
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px
}

.f-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px
}

.f-brand span {
    color: #74C69D
}

.f-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-bottom: 20px
}

.f-social {
    display: flex;
    gap: 10px
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s
}

.soc-btn:hover {
    background: rgba(255, 255, 255, .18)
}

.f-col-ttl {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px
}

.f-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.f-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s
}

.f-links a:hover {
    color: rgba(255, 255, 255, .88)
}

.f-bot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.f-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .35)
}

.nl {
    display: flex;
    gap: 7px
}

.nl input {
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 12px;
    width: 190px;
    outline: none
}

.nl input::placeholder {
    color: rgba(255, 255, 255, .35)
}

.nl-btn {
    height: 34px;
    padding: 0 14px;
    background: #74C69D;
    color: #1B4332;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer
}

/* EXPERT FINALE - PREMIUM EDITORIAL */
.expert-finale {
    padding: 100px 0;
    background: #fdfaf3;
    /* Warm editorial sand */
    position: relative;
    overflow: hidden;
}

.expert-finale .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.finale-text {
    flex: 1;
    max-width: 580px;
}

.f-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gm);
    margin-bottom: 24px;
}

.f-dot {
    width: 8px;
    height: 8px;
    background: var(--pk);
    border-radius: 50%;
}

.f-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 800;
    color: var(--g);
    line-height: 1.1;
    margin-bottom: 24px;
}

.f-title span {
    color: var(--gm);
    font-style: italic;
    font-weight: 400;
}

.f-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.f-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.f-btn-primary {
    background: var(--g);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.f-btn-primary:hover {
    background: var(--gm);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.1);
}

.f-link-secondary {
    color: var(--g);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(27, 67, 50, 0.2);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.f-link-secondary:hover {
    border-bottom-color: var(--g);
}

.finale-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.f-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.f-main.p-card {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: visible;
    border-radius: 60px;
    /* Extra pronounced rounded corners */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle premium border */
}

position: relative;
z-index: 5;
}

.f-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 235, 150, 0.4) 0%, rgba(255, 235, 150, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.f-hanging-lamp {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    /* Behind image */
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.lamp-wire {
    width: 2px;
    height: 60px;
    background: #1B4332;
}

.lamp-head {
    width: 70px;
    height: 35px;
    background: #FFD700;
    border-radius: 70px 70px 5px 5px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7), inset 0 -5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lamp-beam {
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.45) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 85%);
    clip-path: polygon(50% 0%, -20% 100%, 120% 100%);
    pointer-events: none;
    z-index: 1;
    filter: blur(2px);
}

.f-floating-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

.f-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 600;
}

.f-card-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--g);
}

@media (max-width: 1024px) {
    .finale-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .f-description {
        margin-left: auto;
        margin-right: auto;
    }

    .f-actions {
        justify-content: center;
    }

    .finale-visual {
        justify-content: center;
    }

    .f-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .f-title {
        font-size: 42px;
    }
}


@media (max-width: 1024px) {
    .expert-flex {
        flex-direction: column;
        gap: 60px;
    }

    .expert-img-container {
        max-width: 100%;
        order: 2;
    }

    .expert-content {
        text-align: center;
        order: 1;
    }

    .expert-tagline {
        border-left: none;
        border-bottom: 3px solid #ff6b9d;
        padding-left: 0;
        padding-bottom: 15px;
        display: inline-block;
    }

    .expert-stats {
        justify-content: center;
    }
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 120px 24px 0;
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .r-card {
        width: 100%;
        margin: 0 auto;
        padding: 32px 20px;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .r-card-ttl {
        grid-column: span 3;
        text-align: center;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .cat-ico {
        width: 48px;
        height: 48px;
    }

    .hero-main-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        gap: 15px;
        margin-bottom: 24px;
    }

    .hero-text-stack {
        text-align: left;
    }

    .mobile-count {
        display: block;
        flex-shrink: 0;
    }

    .mobile-desc {
        display: block;
        margin-top: 12px;
        line-height: 1.4;
    }

    .desktop-count,
    .desktop-desc {
        display: none;
    }

    .hero-title {
        font-size: 60px;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 100px;
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin-top: -2px;
        margin-bottom: 0;
    }

    .stats {
        display: none;
    }

    .btn-p {
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .hero-main-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-text-stack {
        text-align: left;
    }

    .mobile-count {
        display: block;
        flex-shrink: 0;
    }

    .mobile-desc {
        display: block;
        margin-top: 12px;
        line-height: 1.4;
    }

    .desktop-count,
    .desktop-desc {
        display: none;
    }

    .hero-title {
        font-size: 100px;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 90px;
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin-top: -2px;
        margin-bottom: 0;
    }

    .hero-title em {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

    .stats {
        display: none;
    }

    .btn-p {
        margin-top: 8px;
    }

    .hero-desc {
        line-height: 1.5;
    }
}

/* MOBILE NAVIGATION */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1B4332;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    nav {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo img {
        height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 24px;
        font-family: 'Playfair Display', serif;
    }

    .nav-cta {
        display: none;
        /* Hide CTA on mobile nav bar, put it in menu if needed */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
}

/* GENERAL RESPONSIVENESS */
@media (max-width: 768px) {
    .sec-title {
        font-size: 32px !important;
    }

    .setup-hd {
        padding: 0 20px;
    }

    .inner {
        padding: 0 24px;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 100px;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 90px;
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin-top: -2px;
        margin-bottom: 0;
    }

    .r-card {
        padding: 24px 15px;
        gap: 15px;
        box-shadow: none;
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .f-hanging-lamp,
    .deco {
        display: none !important;
    }

    .flex-row {
        flex-direction: column;
        gap: 30px;
    }

    .c-left {
        width: 100% !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .svc-title {
        font-size: 32px;
    }

    /* Sections */
    .s4-wrap,
    .expert-finale,
    .pg-wrap {
        padding: 60px 0;
    }

    /* Featured Collections */
    .p-cnt {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        height: auto;
        gap: 30px;
    }

    .p-card {
        height: auto;
    }

    .p-img-std img {
        max-height: 400px !important;
    }

    /* Plants Page */
    .p-hero-ttl {
        font-size: 42px !important;
    }

    .filter-row {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
    }

    .filter-row::-webkit-scrollbar {
        display: none;
    }

    .p-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Product Detail */
    .p-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .p-main-info h1 {
        font-size: 36px !important;
    }

    /* Footer */
    .f-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 10px;
        display: grid;
    }

    /* Brand Section */
    .f-grid>div:nth-child(1) {
        grid-column: span 3;
        text-align: center;
        margin-bottom: 10px;
    }

    .f-grid>div:nth-child(1) .f-brand>div {
        margin: 0 auto 20px !important;
    }

    .f-desc {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
    }

    .f-social {
        justify-content: center;
        margin-top: 15px;
    }

    /* Column Headers */
    .f-col-ttl {
        font-size: 10px;
        margin-bottom: 12px;
    }

    /* Links Adjustment */
    .f-links a {
        font-size: 11px;
    }

    /* Catalog - Left */
    .f-grid>div:nth-child(2) {
        text-align: left;
    }

    .f-grid>div:nth-child(2) .f-links {
        align-items: flex-start;
    }

    /* Services - Middle */
    .f-grid>div:nth-child(3) {
        text-align: center;
    }

    .f-grid>div:nth-child(3) .f-links {
        align-items: center;
    }

    /* Company - Right */
    .f-grid>div:nth-child(4) {
        text-align: right;
    }

    .f-grid>div:nth-child(4) .f-links {
        align-items: flex-end;
    }

    .f-bot {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
    }

    .nl {
        width: 100%;
        justify-content: center;
    }

    .nl input {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .p-overflow {
        height: auto !important;
        overflow: visible !important;
    }

    .p-track {
        flex-direction: column;
        gap: 40px;
        transform: none !important;
        /* Disable sliding on mobile, stack instead */
    }

    .p-card {
        width: 100% !important;
    }

    /* Hide carousel buttons on mobile since we stack */
    .p-nav {
        display: none !important;
    }
}

/* VERTICAL GARDEN SECTION */
.vg-wrap {
    padding: 100px 0;
    background: #fff;
}

.vg-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.vg-stack-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vg-stack {
    position: relative;
    width: 85%;
    height: 85%;
    margin-left: 10%;
    /* Offset to make room for rotation to the left */
}

.vg-card {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    /* Ultra rounded as per request */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
}

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

/* STACK POSITIONS */
.vg-card.pos-0 {
    z-index: 10;
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
}

.vg-card.pos-1 {
    z-index: 9;
    transform: translate(-30px, -20px) rotate(-6deg) scale(0.98);
    opacity: 0.9;
    filter: blur(1px);
}

.vg-card.pos-2 {
    z-index: 8;
    transform: translate(-60px, -40px) rotate(-12deg) scale(0.96);
    opacity: 0.7;
    filter: blur(2px);
}

.vg-stack-nav {
    position: absolute;
    bottom: -80px;
    left: 10%;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.v-stack-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(27, 67, 50, 0.1);
    background: #fff;
    color: var(--g);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.v-stack-btn:hover {
    background: var(--g);
    color: #fff;
    border-color: var(--g);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vg-info {
    padding: 60px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(27, 67, 50, 0.25);
    position: relative;
    overflow: hidden;
}

.vg-info .eyebrow {
    color: #74C69D;
    margin-bottom: 12px;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.vg-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
}

.vg-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.vg-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
}

.vg-info .btn-p {
    background: #fff;
    color: #1B4332;
    margin-top: 0;
}

.vg-info .btn-p:hover {
    background: #D8F3DC;
}

@media (max-width: 991px) {
    .vg-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vg-info {
        padding-right: 0;
    }
}

/* SETUP SECTION (EXPANDING PANES) */
.setup-wrap {
    padding: 100px 0;
    background: #fff;
}

.setup-hd {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.setup-panes {
    display: flex;
    height: 600px;
    gap: 15px;
    margin-top: 40px;
}

.pane {
    position: relative;
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
}

.pane.active,
.pane:hover {
    flex: 5;
}

.pane-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease;
}

.pane:hover .pane-bg {
    transform: scale(1.05);
}

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

.pane-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.pane.active .pane-overlay,
.pane:hover .pane-overlay {
    opacity: 1;
}

.pane-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pane.active .pane-label,
.pane:hover .pane-label {
    opacity: 0;
}

.pane-cnt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.pane-cnt p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pane-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #74C69D;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.pane-btn:hover {
    color: #74C69D;
    gap: 15px;
}

@media (max-width: 991px) {
    .setup-panes {
        flex-direction: column;
        height: auto;
    }

    .pane {
        height: 300px;
        flex: none !important;
    }

    .pane.active {
        height: 450px;
    }

    .pane-label {
        transform: translate(-50%, -50%) rotate(0);
    }
}

}

/* WALLGRAPHIC PAGINATION SECTION - MODERN REFINEMENT */
.wp-wrap {
    padding: 100px 0;
    background-color: #fdfbf9;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(116, 198, 157, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.04) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    overflow: hidden;
    position: relative;
}

.wp-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(116, 198, 157, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.wp-wrap::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.wp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* For absolute buttons */
}

.wp-track-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.wp-track {
    display: flex;
    gap: var(--wp-gap, 80px);
    /* Space between cards */
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.wp-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.wp-img-box {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    height: 700px;
    width: 110%;
    /* Overlap right side */
    z-index: 1;
    box-shadow: 0 60px 120px rgba(27, 67, 50, 0.15);
}

.wp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.wp-card.active .wp-img-box img {
    transform: scale(1.05);
}

.wp-info {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: -100px;
    /* Modern overlap */
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.wp-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #2D6A4F;
    margin-bottom: 24px;
    font-weight: 800;
}

.wp-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 0.9;
    margin-bottom: 32px;
    color: #1B4332;
    font-weight: 700;
}

.wp-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 400px;
}

.wp-pagination {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 40px;
}

.wp-dot {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wp-dot.active {
    background: #1B4332;
    width: 80px;
}

.wp-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    width: 100%;
    pointer-events: none;
    z-index: 100;
}

.wp-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    color: #1B4332;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wp-nav-btn:hover {
    background: #1B4332;
    color: #fff;
    transform: scale(1.1);
}

.wp-nav-btn#wpPrev {
    transform: translateX(-30px);
}

.wp-nav-btn#wpNext {
    transform: translateX(30px);
}

.wp-nav-btn#wpPrev:hover {
    transform: translateX(-30px) scale(1.1);
}

.wp-nav-btn#wpNext:hover {
    transform: translateX(30px) scale(1.1);
}

.wp-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 60px;
    /* Increased space below the cards */
}

@media (max-width: 1024px) {
    .wp-wrap {
        --wp-gap: 40px;
        padding: 60px 0;
    }

    .wp-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wp-img-box {
        width: 100%;
        height: 500px;
        border-radius: 40px;
    }

    .wp-info {
        margin-left: 0;
        margin-top: -80px;
        width: 90%;
        margin-inline: auto;
        padding: 60px 40px;
        border-radius: 20px;
        text-align: center;
    }

    .wp-title {
        font-size: 90px;
    }

    .wp-desc {
        max-width: 100%;
        margin-inline: auto;
    }

    .wp-nav {
        display: flex;
        position: static;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        padding: 0;
        pointer-events: auto;
    }

    .wp-nav-btn {
        width: 50px;
        height: 50px;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .wp-wrap {
        --wp-gap: 20px;
        padding: 40px 0;
    }

    .wp-img-box {
        height: 400px;
        border-radius: 30px;
    }

    .wp-info {
        padding: 40px 24px;
        margin-top: -60px;
    }

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

    .wp-pagination {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-main-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 15px;
    }

    .hero-text-stack {
        text-align: left;
    }

    .mobile-count {
        display: block;
        transform: scale(0.9);
        margin-right: -10px;
    }

    .mobile-desc {
        display: block;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .desktop-count,
    .desktop-desc {
        display: none;
    }

    .hero-title {
        font-size: 40px;
        line-height: 0.95;
        letter-spacing: -0.04em;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 32px;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin-top: -2px;
        margin-bottom: 0;
    }

    .stats {
        display: none;
    }

    .btn-p {
        margin-top: 10px;
    }

    .wp-img-box {
        height: 480px;
    }

    .wp-title {
        font-size: 32px;
    }

    .wp-info {
        padding: 32px 20px;
    }
}

}

line-height: 0.95;
letter-spacing: -0.03em;
margin-top: -2px;
margin-bottom: 0;
}

.stats {
    display: none;
}

.btn-p {
    margin-top: 10px;
}

.wp-img-box {
    height: 480px;
}

.wp-title {
    font-size: 32px;
}

.wp-info {
    padding: 32px 20px;
}
}

}

/* SECTION 7B: LIVING ART V2 - MOSAIC EDITION */
.art-v2-wrap {
    padding: 120px 0;
    background: #f8f9fa;
    scroll-margin-top: 80px;
}

.art-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 400px);
    gap: 24px;
}

.mosaic-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    background: #1B4332;
}

.mosaic-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.mosaic-item.tall {
    grid-column: span 3;
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 3;
    grid-row: span 1;
}

.mosaic-item.vertical-focus {
    grid-column: span 3;
    grid-row: span 1;
}

.mosaic-item.wide-focus {
    grid-column: span 9;
    grid-row: span 1;
}


.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s transform cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

.mosaic-item:hover .mosaic-img {
    transform: scale(1.1);
    opacity: 1;
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.95), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
    transform: translateY(0);
}

.m-tag {
    color: #74C69D;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.m-title {
    color: #fff;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    line-height: 1.1;
}

.m-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

@media (max-width: 991px) {
    .art-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .mosaic-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 480px !important;
    }
}

@media (max-width: 768px) {
    .art-v2-wrap {
        padding: 60px 0;
    }

    .mosaic-item {
        border-radius: 24px;
        height: 420px !important;
    }

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

    .mosaic-overlay {
        padding: 32px;
        opacity: 1;
        transform: none;
        background: linear-gradient(to top, rgba(27, 67, 50, 0.9), transparent);
    }
}

/* CLEAN MOBILE RESPONSIVE FOR COLLECTIONS */
@media (max-width: 768px) {
    .s2-wrap .flex-row {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 20px;
    }

    .cat-left {
        width: 100% !important;
        text-align: center !important;
    }

    .cat-right {
        width: 100% !important;
    }

    .c-track {
        gap: 15px !important;
        display: flex !important;
        flex-direction: row !important;
    }

    .c-card {
        width: 240px !important;
        height: 340px !important;
        border-radius: 28px !important;
        flex-shrink: 0 !important;
    }

    .c-nav {
        justify-content: center !important;
        margin-top: 24px !important;
    }
}