/* ============================================
   ORIUCRETSIZUYE.COM — BRAND NEW DESIGN
   Rose-Gold + Deep Plum + Cream Premium Theme
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --plum: #2d1b33;
    --plum-light: #3e2a47;
    --plum-dark: #1e1024;
    --rose: #c4878e;
    --rose-light: #e4b4b8;
    --rose-glow: #d4949a;
    --gold: #c9a96e;
    --gold-light: #e0c68f;
    --cream: #faf5ef;
    --cream-dark: #f0e6d6;
    --white: #ffffff;
    --dark: #1a1118;
    --text: #3d2e35;
    --text-light: #7a6872;
    --text-muted: #a89aa0;
    --border: rgba(45, 27, 51, 0.08);
    --shadow-sm: 0 2px 12px rgba(45, 27, 51, 0.06);
    --shadow-md: 0 8px 30px rgba(45, 27, 51, 0.10);
    --shadow-lg: 0 20px 60px rgba(45, 27, 51, 0.15);
    --shadow-glow: 0 8px 32px rgba(196, 135, 142, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
    background: var(--plum);
    color: rgba(255,255,255,.8);
    padding: 7px 0;
    font-size: .72rem;
    letter-spacing: .3px;
}
.announce-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.announce-inner a { color: var(--gold-light); }
.announce-inner a:hover { color: var(--gold); }
.announce-phone {
    font-weight: 600;
    font-size: .8rem;
    white-space: nowrap;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.announce-phone i { font-size: .65rem; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 245, 239, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Brand */
.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 2px;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    letter-spacing: 3px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--plum) 0%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-tag {
    display: none;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    gap: 4px;
}
.desktop-nav a {
    display: block;
    padding: 8px 18px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-full);
    position: relative;
    letter-spacing: .3px;
}
.desktop-nav a:hover { color: var(--plum); background: rgba(45,27,51,.04); }
.desktop-nav a.active {
    color: var(--plum);
    background: rgba(45,27,51,.06);
    font-weight: 600;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-header {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--plum);
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: .5px;
    transition: all .3s var(--ease);
}
.btn-header:hover {
    background: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.mobile-nav-overlay.open { display: block; opacity: 1; }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 9999;
    transition: right .35s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.mobile-nav-head .brand-name { font-size: 1.3rem; }
.mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--plum);
    font-size: 1rem;
}
.mobile-nav ul { padding: 12px 0; flex: 1; }
.mobile-nav li a {
    display: block;
    padding: 14px 24px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all .2s var(--ease);
}
.mobile-nav li a:hover,
.mobile-nav li a.active {
    color: var(--plum);
    background: var(--cream);
    padding-left: 32px;
}
.mobile-wp {
    margin: 16px 24px 24px;
    padding: 14px;
    text-align: center;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .3s var(--ease);
}
.btn-glow {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-glow) 100%);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 135, 142, 0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--plum);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-wp {
    background: #25d366;
    color: var(--white);
}
.btn-wp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: .95rem; }

/* ===== SECTION HELPERS ===== */
.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}
.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--text-light);
    font-size: .95rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--plum-dark) 0%,
        var(--plum) 35%,
        #4a2d52 65%,
        #5e3a66 100%);
}
/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(196, 135, 142, .12);
    animation: particleFloat 18s infinite ease-in-out;
}
.hero-particles span:nth-child(1) { width:300px;height:300px;top:-10%;left:60%;animation-delay:0s; }
.hero-particles span:nth-child(2) { width:200px;height:200px;top:50%;left:-5%;animation-delay:-4s;background:rgba(201,169,110,.08); }
.hero-particles span:nth-child(3) { width:150px;height:150px;top:70%;left:70%;animation-delay:-8s; }
.hero-particles span:nth-child(4) { width:100px;height:100px;top:20%;left:30%;animation-delay:-12s;background:rgba(201,169,110,.06); }
.hero-particles span:nth-child(5) { width:250px;height:250px;top:60%;left:40%;animation-delay:-6s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: .5; }
    50% { transform: translateY(-40px) scale(1.1); opacity: .8; }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text */
.hero-text { color: var(--white); }
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-full);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-text h1 em {
    font-style: italic;
    color: var(--rose-light);
}
.hero-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    width: fit-content;
}
.stat-item { text-align: center; }
.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
}
.stat-item span {
    font-size: .68rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .5px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}
.hero-img-wrapper > img {
    border-radius: var(--radius) var(--radius) 200px 200px;
    object-fit: cover;
    width: 100%;
    height: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,.95);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    animation: floatBounce 4s infinite ease-in-out;
}
.hero-float-card i {
    font-size: 1.2rem;
    color: var(--rose);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,135,142,.12);
    border-radius: 50%;
}
.hero-float-card strong {
    display: block;
    font-size: .8rem;
    color: var(--plum);
}
.hero-float-card span {
    font-size: .68rem;
    color: var(--text-muted);
}
.float-1 { top: 15%; left: -24px; animation-delay: 0s; }
.float-2 { bottom: 20%; right: -24px; animation-delay: -2s; }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.hero-scroll-hint span {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 3px;
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ===== HIGHLIGHTS ===== */
.highlights {
    padding: 100px 0;
    background: var(--white);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hl-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    transition: all .4s var(--ease);
    border: 1px solid var(--border);
}
.hl-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.hl-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.hl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.hl-card:hover .hl-img img { transform: scale(1.08); }
.hl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45,27,51,.3) 100%);
}
.hl-body { padding: 28px; }
.hl-tag {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(196,135,142,.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.hl-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
    line-height: 1.3;
}
.hl-body p {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}
.hl-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--rose);
    transition: all .3s var(--ease);
}
.hl-card:hover .hl-link { gap: 12px; }
.hl-link i { transition: transform .3s var(--ease); }
.hl-card:hover .hl-link i { transform: translateX(4px); }

/* ===== ABOUT STRIP ===== */
.about-strip {
    padding: 100px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image stack */
.about-img-stack { position: relative; padding: 30px; }
.about-img-main {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    max-width: 220px;
    border-radius: var(--radius-sm);
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}
.about-accent-box {
    position: absolute;
    top: 0;
    right: 40px;
    background: var(--plum);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-light);
}
.accent-label {
    font-size: .65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .8;
    line-height: 1.4;
    margin-top: 4px;
    display: block;
}

/* About Content */
.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: .92rem;
    line-height: 1.8;
}
.about-features {
    display: flex;
    gap: 24px;
    margin: 28px 0 32px;
    flex-wrap: wrap;
}
.af-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.af-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(196,135,142,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.af-icon i { font-size: .85rem; color: var(--rose); }
.af-item span { font-size: .8rem; font-weight: 600; color: var(--plum); }

/* ===== WHY SECTION ===== */
.why-section {
    padding: 100px 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    position: relative;
    padding: 36px 28px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-light);
}
.wc-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(45,27,51,.04);
    line-height: 1;
}
.wc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose), var(--rose-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .4s var(--ease-bounce);
}
.why-card:hover .wc-icon { transform: scale(1.1) rotate(-5deg); }
.wc-icon i { font-size: 1.15rem; color: var(--white); }
.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 10px;
}
.why-card p {
    font-size: .84rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, #4a2d52 100%);
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196,135,142,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(201,169,110,.08) 0%, transparent 40%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}
.cta-text p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    max-width: 460px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--plum-dark); color: var(--white); }
.footer-top {
    display: flex;
    gap: 60px;
    padding: 64px 0 48px;
    flex-wrap: wrap;
}
.footer-brand {
    flex: 0 0 260px;
}
.footer-brand .brand-name {
    font-size: 1.4rem;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all .3s var(--ease);
}
.footer-social a:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.fl-col h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.fl-col a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    padding: 5px 0;
    transition: all .2s var(--ease);
}
.fl-col a i { font-size: .72rem; }
.fl-col a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
}
.fb-credit {
    font-size: .68rem !important;
    color: rgba(255,255,255,.3) !important;
}

/* ===== WHATSAPP FLOAT ===== */
.wp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    z-index: 9990;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    transition: all .3s var(--ease);
}
.wp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
}
.wp-float i { font-size: 1.3rem; }

/* ===== SCROLL TOP ===== */
.go-top {
    position: fixed;
    bottom: 88px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--plum);
    color: var(--white);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9989;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-md);
}
.go-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.go-top:hover {
    background: var(--rose);
    transform: translateY(-3px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== PAGE COMMON STYLES ===== */
/* Breadcrumb */
.breadcrumb-bar {
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-muted);
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--plum); }
.breadcrumb-list i { font-size: .55rem; }

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,135,142,.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}
.page-hero p {
    position: relative;
    z-index: 1;
    font-size: .95rem;
    color: rgba(255,255,255,.7);
}

/* Content Card */
.content-section { padding: 80px 0; }
.content-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.content-card h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
}
.content-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--plum);
    margin: 28px 0 10px;
}
.content-card p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.85;
    font-size: .92rem;
}
.content-card .subtitle {
    font-size: 1.05rem;
    color: var(--rose);
    font-style: italic;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.contact-form-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 6px;
}
.contact-form-card .form-subtitle {
    color: var(--text-light);
    font-size: .82rem;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 6px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--text);
    background: var(--cream);
    transition: all .3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196,135,142,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--text-muted); margin-top: 14px; font-style: italic; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--plum-dark), var(--plum));
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
}
.contact-info-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item i { font-size: 1.1rem; color: var(--rose-light); margin-top: 3px; width: 24px; text-align: center; }
.contact-info-item p { font-size: .88rem; line-height: 1.6; opacity: .85; }
.contact-info-item a { color: var(--gold-light); }
.contact-info-item a:hover { color: var(--gold); }

/* ===== MEMBERSHIP PAGE ===== */
.membership-section { padding: 80px 0; }
.membership-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    max-width: 680px;
    margin: 0 auto;
}
.membership-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--plum);
    text-align: center;
    margin-bottom: 28px;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--rose), var(--rose-glow));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-glow);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 135, 142, 0.5);
}

/* ===== SUSTAINABILITY PAGE ===== */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}
.sustainability-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.sustainability-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.sustainability-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2d5a3d, #4caf50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.sustainability-card .card-icon i { font-size: 1.3rem; color: var(--white); }
.sustainability-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 10px;
}
.sustainability-card p {
    font-size: .84rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FAQ PAGE ===== */
.faq-section { padding: 60px 0; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .3s var(--ease);
}
.faq-item:hover { border-color: var(--rose-light); }
.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    color: var(--plum);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .2s var(--ease);
}
.faq-question:hover { background: var(--cream); }
.faq-question i { color: var(--rose); transition: transform .3s var(--ease); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 24px 20px; color: var(--text-light); line-height: 1.85; font-size: .88rem; }
.faq-item.active .faq-answer { max-height: 500px; }

/* Sustainability hero */
.sustainability-hero {
    background: linear-gradient(135deg, #1a3a25, #2d5a3d);
}
.sustainability-hero h1 { color: var(--white); }

/* ===== PARAPUAN PAGE ===== */
.parapuan-table-wrap {
    margin: 20px 0 28px;
    overflow-x: auto;
    border-radius: var(--radius-sm);
}
.parapuan-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: .9rem;
}
.parapuan-table thead th {
    background: var(--plum);
    color: var(--white);
    padding: 16px 24px;
    text-align: left;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.parapuan-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
}
.parapuan-table tbody tr {
    transition: background .2s var(--ease);
}
.parapuan-table tbody tr:hover {
    background: var(--cream);
}
.parapuan-table tbody tr:last-child td {
    border-bottom: none;
}
.pp-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 700;
    background: rgba(196, 135, 142, .12);
    color: var(--rose);
}
.pp-badge-mid {
    background: rgba(201, 169, 110, .15);
    color: var(--gold);
}
.pp-badge-top {
    background: rgba(45, 27, 51, .1);
    color: var(--plum);
}
.parapuan-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--plum-dark), var(--plum));
    border-radius: var(--radius-sm);
    color: var(--white);
}
.parapuan-highlight i {
    font-size: 1.4rem;
    color: var(--gold-light);
    flex-shrink: 0;
}
.parapuan-highlight p {
    color: rgba(255,255,255,.9) !important;
    margin-bottom: 0 !important;
    font-size: .95rem !important;
}
