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

body{
  font-family:'Poppins',sans-serif;
  background:#ececec;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
}

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

*{
    max-width:100%;
    box-sizing:border-box;
}

.mobile-screen{
    width:100%;
    overflow-x:hidden;
}

/* CONTENT SCROLL ONLY */

.content{
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    scroll-behavior:smooth;
    padding-bottom:120px;
}

/* INPUT / SELECT FIX */

.input-box,
.select-box{
    transition:0.25s ease;
}

/* ACTIVE FIELD */

.input-box:focus-within,
.select-box:focus{
    border-color:#d40032;
    box-shadow:0 0 0 4px rgba(212,0,50,0.08);
}

/* IOS INPUT ZOOM FIX */

.input-box input,
.select-box{
    font-size:16px;
}

/* REMOVE TAP HIGHLIGHT */

input,
select,
textarea,
button{
    -webkit-tap-highlight-color:transparent;
}

/* FIX MOBILE VIEW HEIGHT */

.mobile-screen{
    height:100vh;
}

/* KEEP HEADER FIXED */

.header{
    position:fixed;
}

/* KEEP BOTTOM FIXED */

.bottom-fixed{
    position:fixed;
    z-index:999;
}

/* SMOOTH OPEN KEYBOARD EXPERIENCE */

@media screen and (max-width:768px){

    body.keyboard-open .bottom-fixed{
        display:none;
    }

    body.keyboard-open .content{
        padding-bottom:40px;
    }

}

/* MOBILE SCREEN */

.mobile-screen{
  width:320px;
  height:690px;
  background:#ffffff;
  border-radius:35px;
  position:relative;
  box-shadow:0 15px 45px rgba(0,0,0,0.12);
}

/* TOP SECTION */

.top-bg{
  width:100%;
  height:250px;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

/* IMAGE */

.truck-area img{
  width:375px;
  object-fit:contain;
}

/* LOGIN CARD */

.login-card{
  position:absolute;
  bottom:0;
  width:100%;
  background:#fff;
  border-radius:35px 35px 0 0;
  padding:28px 24px 90px;
}

/* HEADING */

.login-card h1{
  font-size:34px;
  line-height:38px;
  font-weight:700;
  color:#111;
  margin-bottom:10px;
  letter-spacing:-1px;
}

/* SUBTEXT */

.login-card p{
  font-size:14px;
  color:#666;
  line-height:24px;
  margin-bottom:24px;
}

/* LABEL */

.label{
  display:block;
  font-size:14px;
  font-weight:600;
  color:#111;
  margin-bottom:10px;
}

/* INPUT BOX */

.input-box{
  width:100%;
  height:56px;
  border:1.5px solid #ebebeb;
  border-radius:16px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#fff;
  margin-bottom:22px;
  transition:0.3s;
}

.input-box:focus-within{
  border-color:#d40032;
  box-shadow:0 0 0 4px rgba(212,0,50,0.08);
}

/* INPUT ICON */

.input-icon{
  width:55px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid #ececec;
}

.input-icon i{
  font-size:16px;
  color:#d40032;
}

/* INPUT */

.input-box input{
  width:100%;
  height:100%;
  border:none;
  outline:none;
  padding:0 16px;
  font-size:15px;
  font-family:'Poppins',sans-serif;
  color:#111;
}

.input-box input::placeholder{
  color:#b0b0b0;
}

/* BUTTON */

.otp-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:18px;
  background:#d40032;
  color:#fff;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(212,0,50,0.20);
  transition:0.3s;
}

.otp-btn:hover{
  transform:translateY(-2px);
}

/* SECURE */

.secure{
  margin-top:28px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  color:#8a8a8a;
  font-size:13px;
  font-weight:500;
}

.secure i{
  color:#d40032;
  font-size:14px;
}

/* TERMS */

.terms{
  margin-top:32px;
  text-align:center;
  color:#777;
  font-size:13px;
  line-height:24px;
}

.terms a{
  color:#d40032;
  text-decoration:none;
  font-weight:600;
}

/* BUTTON LOADER */

.btn-loader{
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,0.4);
  border-top:2px solid #fff;
  border-radius:50%;
  display:inline-block;
  animation:spin 0.8s linear infinite;
}

@keyframes spin{
  100%{
    transform:rotate(360deg);
  }
}

/* DISABLED BUTTON */

.otp-btn:disabled{
  opacity:0.7;
  cursor:not-allowed;
}

/* RESPONSIVE */

@media(max-width:420px){

  body{
    background:#fff;
  }

  .mobile-screen{
    width:100%;
    height:100vh;
    border-radius:0;
  }

}

/* OTP CARD */

.otp-card{
    position:absolute;
    bottom:0;
    width:100%;
    background:#fff;
    border-radius:35px 35px 0 0;
    padding:24px 24px 40px;
}

/* BACK BUTTON */

.back-btn{
    width:40px;
    height:40px;
    border-radius:12px;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    margin-bottom:18px;
    cursor:pointer;
}

.back-btn i{
    font-size:15px;
}

/* HEADING */

.otp-card h1{
    font-size:32px;
    line-height:36px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

/* TEXT */

.otp-card p{
    font-size:14px;
    color:#666;
    line-height:24px;
    margin-bottom:28px;
}

.otp-card p span{
    color:#d40032;
    font-weight:600;
}

/* OTP BOXES */

.otp-wrapper{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-bottom:26px;
}

.otp-box{
    width:58px;
    height:58px;
    border:1.5px solid #ebebeb;
    border-radius:16px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    outline:none;
    transition:0.3s;
    font-family:'Poppins',sans-serif;
}

.otp-box:focus{
    border-color:#d40032;
    box-shadow:0 0 0 4px rgba(212,0,50,0.08);
}

/* BUTTON */

.verify-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:18px;
    background:#d40032;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 10px 22px rgba(212,0,50,0.20);
    transition:0.3s;
}

.verify-btn:hover{
    transform:translateY(-2px);
}

/* RESEND */

.resend{
    margin-top:26px;
    text-align:center;
    font-size:13px;
    color:#888;
}

.resend a{
    color:#d40032;
    text-decoration:none;
    font-weight:600;
}

/* TIMER */

.timer{
    margin-top:8px;
    text-align:center;
    color:#999;
    font-size:13px;
}

/* SECURE */

.secure{
    margin-top:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    color:#8a8a8a;
    font-size:13px;
    font-weight:500;
}

.secure i{
    color:#d40032;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:420px){

    body{
        background:#fff;
    }

    .mobile-screen{
        width:100%;
        height:100vh;
        border-radius:0;
    }

}

/* BUTTON LOADER */

.btn-loader{
    width:18px;
    height:18px;
    border:2px solid rgba(255,255,255,0.4);
    border-top:2px solid #fff;
    border-radius:50%;
    display:inline-block;
    animation:spin 0.8s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

.verify-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}

/* NOTIFICATION */

.notification{
  position:fixed;
  top:20px;
  right:20px;
  background:#fff;
  min-width:280px;
  max-width:320px;
  border-left:4px solid #d40032;
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  z-index:9999;
  opacity:0;
  visibility:hidden;
  transform:translateY(-20px);
  transition:0.3s ease;
}

.notification.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.notification-content{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

#notificationMessage{
  font-size:14px;
  color:#333;
  line-height:22px;
  font-weight:500;
}

.close-notification{
  border:none;
  background:none;
  cursor:pointer;
  color:#999;
  font-size:15px;
  padding:0;
}

.close-notification:hover{
  color:#d40032;
}

/* SUCCESS */

.notification.success{
  border-left-color:#1db954;
}

/* ERROR */

.notification.error{
  border-left-color:#d40032;
}

/* HEADER */

/* HEADER */

.header{
  background:#d40032;
  padding:18px 18px 28px;
  color:#fff;
  border-radius:0 0 26px 26px;
  position:relative;
  overflow:hidden;
}

/* TOP ROW */

.top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:26px;
}

/* MENU BUTTON */

.menu-btn{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  cursor:pointer;
  transition:0.3s;
}

.menu-btn:hover{
  background:rgba(255,255,255,0.18);
}

.menu-btn i{
  font-size:17px;
  color:#fff;
}

/* LOGO */

.logo{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo img{
  height:34px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

/* PROFILE BUTTON */

.profile-btn{
  width:40px;
  height:40px;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  border:2px solid rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:center;
  align-items:center;
  transition:0.3s;
}

.profile-btn:hover{
  background:rgba(255,255,255,0.18);
}

.profile-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* USER SECTION */

.user-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* USER TEXT */

.user-content h2{
  font-size:30px;
  font-weight:700;
  line-height:34px;
  margin-bottom:6px;
  color:#fff;
}

.user-content p{
  font-size:14px;
  color:rgba(255,255,255,0.85);
  font-weight:400;
}

/* OPTIONAL LIGHT CIRCLE BACKGROUND */

.header::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  top:-60px;
  right:-60px;
}

/* MAIN CONTENT */

.content{
  padding:22px 18px 100px;
  overflow-y:auto;
  height:calc(100% - 180px);
}

/* TITLE */

.section-title{
  font-size:30px;
  font-weight:700;
  color:#111;
  line-height:38px;
  margin-bottom:6px;
}

.section-sub{
  font-size:14px;
  color:#666;
  margin-bottom:24px;
}

/* SERVICES */

.services{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:26px;
}

.service-card{
  background:#fff;
  border-radius:18px;
  padding:18px 12px;
  text-align:center;
  border:1px solid #f0f0f0;
  transition:0.3s;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.03);
}

.service-card:hover{
  transform:translateY(-3px);
}

.service-card img{
  width:52px;
  margin-bottom:12px;
}

.service-card h4{
  font-size:13px;
  font-weight:600;
  color:#111;
  line-height:18px;
}

/* WHY SECTION */

.why-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:16px;
  color:#111;
}

.why-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.why-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:#444;
}

.why-item i{
  width:26px;
  height:26px;
  border-radius:50%;
  background:#fff2f4;
  color:#d40032;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:12px;
}

/* BOTTOM NAV */

.bottom-nav{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:78px;
  background:#fff;
  border-top:1px solid #f0f0f0;
  display:flex;
  justify-content:space-around;
  align-items:center;
}

.nav-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  font-size:11px;
  color:#777;
  cursor:pointer;
}

.nav-item i{
  font-size:20px;
}

.nav-item.active{
  color:#d40032;
  font-weight:600;
}

/* SIDE MENU */

.side-menu{
  position:absolute;
  top:0;
  left:-280px;
  width:280px;
  height:100%;
  background:#fff;
  z-index:1000;
  transition:0.35s ease;
  box-shadow:10px 0 30px rgba(0,0,0,0.12);
  overflow-y:auto;
}

.side-menu.active{
  left:0;
}

/* OVERLAY */

.menu-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
}

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

/* MENU HEADER */

.menu-header{
  background:#d40032;
  padding:24px 20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  color:#fff;
}

.menu-user{
  display:flex;
  gap:14px;
  align-items:center;
}

.menu-user img{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#fff;
  padding:4px;
}

.menu-user h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:4px;
}

.menu-user p{
  font-size:12px;
  opacity:0.9;
}

.close-menu{
  font-size:20px;
  cursor:pointer;
}

/* MENU ITEMS */

.menu-items{
  padding:20px 0;
}

.menu-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:15px 24px;
  font-size:15px;
  font-weight:500;
  color:#333;
  cursor:pointer;
  transition:0.3s;
}

.menu-item i{
  width:20px;
  font-size:17px;
}

.menu-item:hover{
  background:#fff4f6;
  color:#d40032;
}

.menu-item.active{
  background:#fff4f6;
  color:#d40032;
  border-left:4px solid #d40032;
}

.logout{
  color:#e53935;
}

/* RESPONSIVE */

@media(max-width:420px){

  body{
    background:#fff;
  }

  .mobile-screen{
    width:100%;
    height:100vh;
    border-radius:0;
  }

}

/* BOOK REQUEST BUTTON */

.book-request-btn{
    position:absolute;
    bottom:85px;
    left:50%;
    transform:translateX(-50%);
    width:88%;
    height:58px;
    background:#d40032;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#fff;
    font-size:16px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(212,0,50,0.25);
    cursor:pointer;
    z-index:50;
}

.book-request-btn i{
    font-size:14px;
}

/* SERVICES SECTION */

    .services{
      position:relative;
      overflow:hidden;
      border-radius:28px;
    }

/* OVERLAY */

.services::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  opacity:0;
  visibility:hidden;
  transition:0.35s ease;
  z-index:5;
  border-radius:28px;
}

/* BUTTON */

.services-hover-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,20px);
  background:#d40032;
  color:#fff;
  padding:14px 24px;
  border-radius:16px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  opacity:0;
  visibility:hidden;
  transition:0.35s ease;
  z-index:10;
  white-space:nowrap;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* HOVER */

.services:hover::before{
  opacity:1;
  visibility:visible;
}

.services:hover .services-hover-btn{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,-50%);
}

/* DATE PICKER */

.date-box{

    position:relative;
}

#shiftingDate{

    cursor:pointer;
    background:#fff;
}

/* FLATPICKR */

.flatpickr-calendar{

    border:none !important;
    border-radius:22px !important;
    box-shadow:0 10px 40px rgba(0,0,0,0.12) !important;
    font-family:'Poppins',sans-serif !important;
    overflow:hidden;
}

.flatpickr-months{

    background:linear-gradient(135deg,#d40032,#ff1744);
    padding:10px 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year{

    color:#fff !important;
    font-weight:600;
}

.flatpickr-weekday{

    color:#d40032 !important;
    font-weight:600;
}

.flatpickr-day.selected{

    background:#d40032 !important;
    border-color:#d40032 !important;
}

.flatpickr-day.today{

    border-color:#d40032 !important;
    color:#d40032;
}

.flatpickr-day:hover{

    background:#ffe5eb !important;
    border-color:#ffe5eb !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg{

    fill:#fff !important;
}

.inner-header{

    height:50px;
    background:linear-gradient(135deg,#d40032,#e60023);
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    color:#fff;
}

.inner-header h2{

    font-size:20px;
    font-weight:600;
}

.inner-back-btn{

    position:absolute;
    left:20px;
    width:40px;
    height:40px;
    border-radius:12px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#fff;
    font-size:15px;
}
.inner-section{
    overflow-y: auto;
  height: calc(100% - 125px);
}
.request-tabs{

    display:flex;
    overflow:auto;
    background:#fff;
    padding:0 10px;
    border-bottom:1px solid #f1f1f1;
}

.request-tabs::-webkit-scrollbar{

    display:none;
}

.request-tab{

    padding:16px 18px;
    white-space:nowrap;
    font-size:14px;
    font-weight:500;
    color:#777;
    position:relative;
    cursor:pointer;
}

.request-tab.active{

    color:#d40032;
    font-weight:600;
}

.request-tab.active::after{

    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    border-radius:30px;
    background:#d40032;
}

/* REQUEST LIST */

.request-list{

    padding:18px;
    background:#fafafa;
    min-height:100vh;
}

/* CARD */

.request-card{

    background:#fff;
    border-radius:22px;
    padding:18px;
    margin-bottom:18px;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
    border:1px solid #f3f3f3;
    transition:0.3s;
}

.request-card:hover{

    transform:translateY(-2px);
}

/* TOP */

.request-top{

    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
}

.request-top h3{

    font-size:17px;
    font-weight:600;
    color:#111;
}

/* STATUS */

.status{

    padding:7px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.status.pending{

    background:#fff4df;
    color:#ff9800;
}

.status.progress{

    background:#e9f8ee;
    color:#20a944;
}

.status.completed{

    background:#e8fff0;
    color:#00a651;
}

/* INFO */

.request-info{

    display:flex;
    flex-direction:column;
    gap:14px;
}

.info-row{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.info-row span{

    color:#888;
    min-width:50px;
}

.info-row strong{

    color:#111;
    font-weight:600;
}

/* BOTTOM */

.request-bottom{

    margin-top:20px;
    padding-top:15px;
    border-top:1px solid #f1f1f1;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.booking-id{

    font-size:13px;
    font-weight:600;
    color:#d40032;
}

.request-bottom i{

    color:#999;
    font-size:14px;
}

/* EMPTY */

.empty-box{

    background:#fff;
    padding:40px 20px;
    border-radius:24px;
    text-align:center;
    margin-top:30px;
}

.empty-box img{

    width:250px;
    margin-bottom:15px;
}

.empty-box h3{

    font-size:18px;
    margin-bottom:10px;
}

.empty-box p{

    color:#777;
    font-size:14px;
    line-height:24px;
}

/* PROFILE PAGE */

.profile-page{
    padding:15px;
}

/* PROFILE CARD */

.profile-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    margin-bottom:20px;
    position:relative;
}

.profile-cover{
    height:60px;
    background:linear-gradient(135deg,#ff2d2d,#d90027);
}

.profile-image{
    width:95px;
    height:95px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    margin:-48px auto 12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
}

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

.profile-card h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:6px;
    color:#111;
}

.profile-card p{
    font-size:14px;
    color:#777;
    margin-bottom:18px;
}

.profile-badges{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    padding-bottom:22px;
}

.badge-item{
    background:#f3f4f6;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    color:#555;
}

.badge-item.active{
    background:#ffe5e8;
    color:#e60023;
}

/* STATS */

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

.stat-card{
    background:#fff;
    border-radius:22px;
    padding:18px 10px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.stat-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ffe9ec;
    color:#e60023;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 10px;
    font-size:18px;
}

.stat-icon.green{
    background:#e7fff0;
    color:#18a957;
}

.stat-icon.orange{
    background:#fff4df;
    color:#f59e0b;
}

.stat-card h3{
    font-size:22px;
    margin-bottom:4px;
    color:#111;
}

.stat-card p{
    font-size:12px;
    color:#777;
}

/* MENU */

.profile-menu{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.profile-menu-item{
    background:#fff;
    border-radius:22px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.profile-menu-item:hover{
    transform:translateY(-2px);
}

.menu-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.menu-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background:#fff0f2;
    color:#e60023;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.profile-menu-item h4{
    font-size:15px;
    color:#111;
    margin-bottom:3px;
}

.profile-menu-item p{
    font-size:12px;
    color:#777;
}

.profile-menu-item i.fa-angle-right{
    color:#bbb;
    font-size:14px;
}

/* LOGOUT */

.logout-btn{
    margin-top:24px;
    height:56px;
    border-radius:18px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

/* CONTENT */

.edit-profile-page{
    padding:22px;
}

/* PROFILE */

.profile-upload{
    text-align:center;
    margin-bottom:28px;
    position:relative;
}

.profile-upload img{
    width:115px;
    height:115px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.camera-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#ff1f3d;
    color:#fff;
    position:absolute;
    bottom:0;
    right:calc(50% - 58px);
    display:flex;
    align-items:center;
    justify-content:center;
    border:3px solid #fff;
    cursor:pointer;
}

/* FORM */

.form-profile-card{
    background:#fff;
    border-radius:24px;
    padding:22px;
    border:1px solid #f1f1f1;
    box-shadow:0 5px 18px rgba(0,0,0,0.04);
}

.form-input-group{
    margin-bottom:20px;
}

.form-input-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.input-profile-box{
    height:56px;
    border:1px solid #ececec;
    border-radius:16px;
    display:flex;
    align-items:center;
    padding:0 16px;
    background:#fafafa;
}

.input-profile-box i{
    margin-right:12px;
    color:#999;
}

.input-profile-box input{
    width:100%;
    border:none;
    outline:none;
    background:none;
    font-size:14px;
}

/* BUTTON */

.save-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#ff1f3d,#e4002b);
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin-top:8px;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(255,31,61,0.2);
}

.support-page{
    padding:20px;
}

/* TOP CARD */

.support-top{
    background:linear-gradient(135deg,#ff1f3d,#e4002b);
    border-radius:28px;
    padding:30px 22px;
    text-align:center;
    color:#fff;
    margin-bottom:22px;
}

.support-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:rgba(255,255,255,0.15);
    margin:auto;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.support-top h2{
    font-size:22px;
    margin-bottom:8px;
}

.support-top p{
    font-size:13px;
    line-height:22px;
    opacity:0.95;
}

/* CONTACT CARDS */

.contact-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:26px;
}

.contact-card{
    background:#fff;
    border-radius:22px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid #f1f1f1;
    box-shadow:0 5px 16px rgba(0,0,0,0.04);
}

.contact-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.contact-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#fff1f3;
    color:#ff1f3d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-info h4{
    font-size:15px;
    margin-bottom:4px;
    color:#222;
}

.contact-info p{
    font-size:13px;
    color:#777;
}

.contact-arrow{
    color:#bbb;
}

/* TOP BANNER */

    .policy-banner{
      background:linear-gradient(135deg,#ff1f3d,#ff5c73);
      margin:18px;
      border-radius:28px;
      padding:30px 24px;
      color:#fff;
      position:relative;
      overflow:hidden;
    }

    .policy-banner::after{
      content:'';
      width:160px;
      height:160px;
      background:rgba(255,255,255,0.08);
      position:absolute;
      border-radius:50%;
      right:-50px;
      top:-50px;
    }

    .policy-icon{
      width:70px;
      height:70px;
      border-radius:22px;
      background:rgba(255,255,255,0.15);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      margin-bottom:18px;
      backdrop-filter:blur(10px);
    }

    .policy-banner h3{
      font-size:24px;
      font-weight:700;
      margin-bottom:10px;
      position:relative;
      z-index:2;
    }

    .policy-banner p{
      font-size:14px;
      line-height:24px;
      opacity:0.95;
      position:relative;
      z-index:2;
    }

    /* CONTENT */

    .policy-content{
      padding:0 18px 10px;
    }

    .policy-card{
      background:#fff;
      border-radius:24px;
      padding:22px;
      margin-bottom:18px;
      box-shadow:0 8px 24px rgba(0,0,0,0.05);
      border:1px solid #f1f1f1;
    }

    .policy-title{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }

    .policy-title-icon{
      width:42px;
      height:42px;
      border-radius:14px;
      background:#fff1f3;
      color:#ff1f3d;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
      flex-shrink:0;
    }

    .policy-title h4{
      font-size:16px;
      font-weight:600;
      color:#111;
    }

    .policy-card p{
      font-size:13px;
      line-height:25px;
      color:#666;
    }

    .policy-card ul{
      margin-top:12px;
      padding-left:18px;
    }

    .policy-card ul li{
      font-size:13px;
      color:#666;
      margin-bottom:10px;
      line-height:24px;
    }

    /* FOOTER */

    .policy-footer{
      margin-top:10px;
      background:#fff5f6;
      border:1px solid #ffe3e7;
      padding:18px;
      border-radius:20px;
      text-align:center;
    }

    .policy-footer h4{
      color:#ff1f3d;
      font-size:15px;
      margin-bottom:8px;
    }

    .policy-footer p{
      font-size:13px;
      color:#666;
      line-height:22px;
    }

    input,
select,
textarea{
    width:100%;
    min-width:0;
}

.premium-loader{
      position:fixed;
      inset:0;
      z-index:999999;
      display:flex;
      justify-content:center;
      align-items:center;
      background:linear-gradient(
        135deg,
        #ffffff,
        #f7f7f7
      );
    }

    .loader-card{
      width:90%;
      max-width:360px;
      background:#fff;
      border-radius:30px;
      padding:35px 25px;
      text-align:center;
      box-shadow:
      0 30px 60px rgba(0,0,0,.08),
      0 0 0 1px rgba(0,0,0,.04);
    }

    .loader-logo{
      width:90px;
      margin-bottom:15px;
    }

    .loader-card h2{
      font-size:24px;
      font-weight:700;
      color:#111;
      margin-bottom:6px;
    }

    .loader-card p{
      color:#777;
      font-size:14px;
    }

    .journey{
      display:flex;
      align-items:center;
      margin:40px 0;
    }

    .point{
      color:#ff1f3d;
      font-size:24px;
    }

    .journey-line{
      flex:1;
      height:4px;
      background:#ececec;
      position:relative;
      margin:0 10px;
      border-radius:20px;
    }

    .truck{
      position:absolute;
      top:-18px;
      left:0;
      color:#ff1f3d;
      font-size:28px;
      animation:moveTruck 4s linear infinite;
    }

    @keyframes moveTruck{

      0%{
        left:0;
      }

      100%{
        left:calc(100% - 30px);
      }

    }

    .progress-wrap{
      margin-top:10px;
    }

    .progress-bar{
      width:100%;
      height:10px;
      background:#f0f0f0;
      border-radius:30px;
      overflow:hidden;
    }

    .progress-fill{
      width:0%;
      height:100%;
      border-radius:30px;
      background:linear-gradient(
        90deg,
        #ff1f3d,
        #ff6a00
      );
    }

    #progressText{
      display:block;
      margin-top:12px;
      font-weight:700;
      color:#222;
    }

    .loading-status{
      margin-top:15px;
      font-size:13px;
      color:#777;
    }