:root {
  --bg: #f5fbf8;
  --card: #fff;
  --ink: #10231f;
  --muted: #68817b;
  --pri: #0ba66b;
  --pri2: #28d39a;
  --blue: #2678ff;
  --line: #e4efeb;
  --danger: #e5484d;
  --warn: #f59e0b;
  --shadow: 0 18px 50px rgba(16, 35, 31, .10)
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
background:
    linear-gradient(
        135deg,
        #d9fbe8 0%,
        #e8fff4 18%,
        #e6f7ff 48%,
        #f3fff9 72%,
        #ffffff 100%
    );
  color: var(--ink)
}

a {
  text-decoration: none;
  color: inherit
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 7%;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.brand {
  font-weight: 800;
  font-size: 22px;
  display: flex;
  gap: 9px;
  align-items: center
}

.brand span {
  background: linear-gradient(135deg, var(--pri), var(--pri2));
  color: white;
  border-radius: 14px;
  padding: 7px 10px
}

.navlinks {
  display: flex;
  gap: 16px;
  align-items: center
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--pri), var(--pri2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11, 166, 107, .25);
  cursor: pointer;
  display: inline-block
}

.btn.small {
  padding: 10px 14px;
  border-radius: 12px
}

.btn.alt {
  background: #10231f
}

.btn.ghost {
  background: white;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line)
}

main {
  min-height: 76vh
}

.hero {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center
}

.pill {
  display: inline-flex;
  background: #e5fff3;
  color: #087a50;
  border: 1px solid #b9efd7;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 13px
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 16px 0
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px
}

.hero-card,
.card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 26px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px
}

.stat {
  background: #f7fffb;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px
}

.stat b {
  font-size: 26px
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 7% 70px
}

.section {
  padding: 40px 7%
}

.form {
  max-width: 760px;
  margin: 28px auto
}

.field {
  margin-bottom: 15px
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px
}

.input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  font: inherit
}

textarea {
  min-height: 110px
}

.table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow)
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left
}

th {
  background: #f4fbf8;
  font-size: 13px;
  text-transform: uppercase;
  color: #56706a
}

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: #eef2ff;
  color: #334
}

.badge.Pending {
  background: #fff7ed;
  color: #9a3412
}

.badge.Approved,
.badge.Scheduled,
.badge.Completed,
.badge.Resolved {
  background: #ecfdf5;
  color: #047857
}

.badge.Rejected {
  background: #fef2f2;
  color: #b91c1c
}

.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh
}

.side {
  background: #0c211b;
  color: white;
  padding: 24px
}

.side a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  margin: 6px 0;
  color: #dff8ef
}

.side a:hover,
.side a.active {
  background: rgba(255, 255, 255, .12)
}

.content {
  padding: 28px
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  margin-bottom: 15px
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 30px
}

@media(max-width:850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px
  }
  .grid {
    grid-template-columns: 1fr
  }
  .nav {
    padding: 14px 18px
  }
  .navlinks {
    gap: 9px;
    font-size: 14px
  }
  .layout {
    grid-template-columns: 1fr
  }
  .side {
    position: relative
  }
  .content {
    padding: 18px
  }
  .stats {
    grid-template-columns: 1fr
  }
  .hero-card {
    display: none
  }
}




.nav{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:14px 28px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(15,23,42,.08);
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.brandx{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#0f172a;
}

.brand-logo{
    width:46px;
    height:46px;
    object-fit:contain;
    border-radius:14px;
}

.brand-name{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-name strong{
    font-size:21px;
    font-weight:800;
    letter-spacing:-.4px;
}

.brand-name small{
    margin-top:4px;
    font-size:11px;
    font-weight:600;
    color:#64748b;
}

.navlinks{
    display:flex;
    align-items:center;
    gap:10px;
}

.navlinks a{
    text-decoration:none;
    color:#334155;
    font-size:14px;
    font-weight:700;
    padding:10px 14px;
    border-radius:999px;
    transition:.2s ease;
}

.navlinks a:hover{
    background:#f1f5f9;
    color:#0f766e;
}

.navlinks .btn.small{
    background:linear-gradient(135deg,#16a34a,#0f766e);
    color:white;
    box-shadow:0 10px 22px rgba(22,163,74,.22);
}

.navlinks .btn.small:hover{
    background:linear-gradient(135deg,#15803d,#115e59);
    color:white;
    transform:translateY(-1px);
}

@media(max-width:700px){
    .nav{
        padding:12px 16px;
    }

    .brand-logo{
        width:40px;
        height:40px;
    }

    .brand-name strong{
        font-size:18px;
    }

    .brand-name small{
        display:none;
    }

    .navlinks{
        gap:6px;
    }

    .navlinks a{
        font-size:13px;
        padding:8px 10px;
    }

    .navlinks a[href="notification.php"],
    .navlinks a[href="schedule.php"]{
        display:none;
    }
}

/* BEFORE LOGIN */
.before-login a{
    color:#475569;
}

.before-login .register-btn{
    background:linear-gradient(135deg,#16a34a,#0f766e);
    color:white !important;
    box-shadow:0 10px 22px rgba(22,163,74,.22);
}

/* AFTER LOGIN */
.after-login{
    background:#f8fafc;
    padding:6px;
    border-radius:999px;
    border:1px solid #e2e8f0;
}

.after-login a{
    color:#0f172a;
}

.after-login a:hover{
    background:white;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.after-login .logout-btn{
    background:#ef4444;
    color:white !important;
}

.after-login .logout-btn:hover{
    background:#dc2626;
}

/* MOBILE */
@media(max-width:700px){

    .after-login{
        overflow-x:auto;
        white-space:nowrap;
        padding:4px;
        max-width:100%;
    }

    .after-login::-webkit-scrollbar{
        display:none;
    }

    .after-login a{
        font-size:12px;
        padding:8px 10px;
    }

}




.hero-cleanbin{
    min-height:calc(100vh - 90px);
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:40px;
    padding:70px 8%;
    background:
        radial-gradient(circle at top left, rgba(34,197,94,.20), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14,165,233,.18), transparent 35%),
        linear-gradient(135deg,#f8fafc,#ecfdf5);
    overflow:hidden;
}

.hero-badge{
    display:inline-flex;
    padding:9px 16px;
    border-radius:999px;
    background:#dcfce7;
    color:#15803d;
    font-size:13px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content h1{
    max-width:720px;
    font-size:clamp(38px,6vw,72px);
    line-height:1;
    letter-spacing:-2.5px;
    margin:0;
    color:#0f172a;
}

.hero-content p{
    max-width:620px;
    margin:24px 0;
    font-size:18px;
    line-height:1.7;
    color:#475569;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-hero,
.btn-ghost{
    padding:14px 22px;
    border-radius:16px;
    text-decoration:none;
    font-weight:800;
}

.btn-hero{
    background:linear-gradient(135deg,#16a34a,#0f766e);
    color:white;
    box-shadow:0 16px 30px rgba(22,163,74,.25);
}

.btn-ghost{
    background:white;
    color:#0f766e;
    border:1px solid #d1fae5;
}

.hero-visual{
    position:relative;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.eco-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px);
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 30px 80px rgba(15,23,42,.14);
}

.main-bin{
    width:310px;
    height:310px;
    border-radius:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.bin-icon{
    width:120px;
    height:120px;
    border-radius:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
    background:linear-gradient(135deg,#dcfce7,#e0f2fe);
    margin-bottom:18px;
}

.main-bin h3{
    margin:0;
    font-size:32px;
    color:#0f172a;
}

.main-bin p{
    margin:8px 0 0;
    color:#64748b;
    font-weight:700;
}

.float-card{
    position:absolute;
    padding:13px 18px;
    border-radius:18px;
    background:white;
    color:#0f172a;
    font-weight:900;
    box-shadow:0 18px 40px rgba(15,23,42,.12);
    border:1px solid #e2e8f0;
}

.card-1{
    top:45px;
    left:40px;
}

.card-2{
    right:30px;
    top:120px;
}

.card-3{
    bottom:70px;
    left:70px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    padding:60px 8%;
    background:white;
}

.feature-card{
    padding:30px;
    border-radius:28px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    transition:.25s ease;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 50px rgba(15,23,42,.10);
}

.feature-icon{
    width:58px;
    height:58px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#dcfce7;
    margin-bottom:16px;
}

.feature-card h3{
    margin:0 0 10px;
    color:#0f172a;
    font-size:21px;
}

.feature-card p{
    margin:0;
    color:#64748b;
    line-height:1.6;
}

@media(max-width:900px){
    .hero-cleanbin{
        grid-template-columns:1fr;
        padding:45px 22px;
        text-align:left;
    }

    .hero-visual{
        min-height:330px;
    }

    .main-bin{
        width:240px;
        height:240px;
        border-radius:34px;
    }

    .bin-icon{
        width:90px;
        height:90px;
        font-size:52px;
    }

    .float-card{
        font-size:13px;
        padding:10px 14px;
    }

    .feature-grid{
        grid-template-columns:1fr;
        padding:35px 22px;
    }
}



.page-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.muted{
    color:#64748b;
    margin-top:4px;
}

.notify-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    background:white;
    border-radius:24px;
    padding:22px;

    margin-bottom:16px;

    border:1px solid #e2e8f0;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    transition:.2s ease;
}

.notify-card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.notify-content{
    flex:1;
}

.notify-title{
    font-size:17px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:8px;
}

.notify-message{
    color:#475569;
    line-height:1.6;
    margin-bottom:10px;
}

.notify-time{
    font-size:13px;
    color:#94a3b8;
}

.delete-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 16px;

    border-radius:14px;

    text-decoration:none;

    background:#fef2f2;
    color:#dc2626;

    font-size:13px;
    font-weight:700;

    transition:.2s ease;
}

.delete-btn:hover{
    background:#dc2626;
    color:white;
}

.empty-card{
    text-align:center;
    padding:60px 20px;
}

.empty-icon{
    font-size:52px;
    margin-bottom:14px;
}

@media(max-width:700px){

    .notify-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .notify-action{
        width:100%;
    }

    .delete-btn{
        width:100%;
    }

}