:root{
  --primary-blue:#0D3B8E;
  --orange:#FF7A1A;
  --orange-dark:#FF8F2D;

  --white:#FFFFFF;
  --off-white:#FFFFFF;
  --cream:#FFFFFF;
  --white:#FFFFFF;

  --light-bg:#FFFFFF;

  --text-dark:#163A70;
  --text-muted:#5E6B84;

  --soft-blue:#EEF4FF;
}

h1, h2, h3 {
  color: var(--text-dark)!important;
}

p {
  color: var(--text-muted)!important;
}

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

/* Body */
body {
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-family: 'Rubik', sans-serif;
}

section {
  transition: transform 0.4s ease;
}

section:hover {
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}

button {
  position: relative;
  overflow: hidden;
}

button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  transition: 0.5s;
}

button:active::after {
  width: 300px;
  height: 300px;
}
/* Navbar */
.navbar{
  height:95px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0px 50px;

  background: linear-gradient(
  135deg,
  var(--white),
  var(--off-white)
);

  border-bottom:1px solid #ECE7DF;

  box-shadow:0 8px 30px rgba(0,0,0,.04);

  position:sticky;
  top:0;
  z-index:1000;
}

/* REVEAL ANIMATION */
/* GLOBAL SCROLL ANIMATION */

.reveal,
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* visible state */
.reveal.active,
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger effect */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

.reveal {
  opacity: 1;
  transform: translateY(60px) scale(0.96);
  filter: blur(6px);
  transition: all 0.8s cubic-bezier(.2,.65,.3,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(255,107,0,0.35));
  transform:translateY(8px);
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(255,107,0,0.4));
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color:var(--primary-blue) !important;
  transition: 0.3s;
}

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

/* Button */
.sell-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;

  border: none;
  border-radius: 10px;

  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.sell-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(255, 107, 0, 0.4);
}

.sell-btn:active {
  transform: scale(0.97);
}

/* Hamburger (hidden in desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color:var(--primary-blue);
}

.whatsapp-btn{
  background:#25D366;
  color:white;
  border:none;
  padding:14px 22px;
  border-radius:12px;
  font-weight:bold;
  cursor:pointer;
}

.secondary-btn{
  background: transparent;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  padding:14px 22px;
  border-radius:12px;
  font-weight:bold;
  cursor:pointer;
}

.secondary-btn:hover{
  transform:translateY(-2px);
  background: var(--primary-blue);
  color: var(--white);
}

/* 🔥 MOBILE STYLES */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #FFFFFF;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .sell-btn {
    display: none;
  }
}

@media (max-width:768px){

  .navbar{
    position:relative;
    padding:0 15px !important;
    height:80px;
  }

  /* Center logo */
  .logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin-left:0 !important;
  }

  .logo img{
    height:150px;
    transform:none;
  }

  /* Menu on left */
  .menu-toggle{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    display:block;
  }

  /* Right-side controls */
  .nav-right{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    gap:10px;
  }

}


/* SEARCH BAR IN NAVBAR */

/* Dropdown results */

@media (max-width: 768px) {
  .search-box {
    flex:1;
    width: 100%;
    margin: 0 10px;
    visibility: hidden;
  }

  .search-box input {
    display:block;
    width: 100%;
    height:42px;
    position:static;
  }
}

/* Search container */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--primary-blue);
}

/* Input */
.search-box input {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(7, 59, 142, 0.18);
  padding: 12px 16px;     /* bigger height */
  border-radius: 8px;
  outline: none;
  width: 220px;           /* wider */
  font-size: 15px;        /* bigger text */
}

/* Icon */
.search-icon {
  font-size: 26px;        /* bigger icon */
  margin-left: 10px;
  cursor: pointer;
  color: #C97B3D;
}

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

  .search-box{
    position:relative;
    display:flex;
    align-items:center;
    display:none !important
  }

  .search-box input{
    display:block;

    position:absolute;
    top:55px;
    right:0;

    width:260px;
    height:50px;

    padding:0 16px;

    background:#FAF7F2;
    border:1px solid rgba(255,255,255,.15);
    border-radius:14px;

    z-index:999999;
  }

  /* NAVBAR SEARCH RESULTS */
  #results{
    position:absolute;
    top:60px;
    right:0;

    width:320px;
    max-width:90vw;

    background:var(--primary-blue);
    border:1px solid rgba(255,255,255,.14);
    border-radius:14px;

    max-height:320px;
    overflow-y:auto;

    z-index:1000001;
  }

  /* HERO SEARCH RESULTS */
  #heroResults{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#FAF7F2;
    border:1px solid rgba(255,255,255,.14);
    border-radius:14px;

    max-height:320px;
    overflow-y:auto;

    z-index:1000001;
  }

  .search-results div{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    padding:12px 16px;
  }

}

@media(max-width:768px){

  .nav-right{
    position:relative;
  }

  .navbar{
    overflow:visible !important;
  }

}

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 100000;
}



@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color:var(--white);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
    margin-left: auto;
  }

  .sell-btn {
    display: none;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* 🔍 Only icon visible */
  .search-box.active input {
    display: block;
  }
}


/* HERO SECTION */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:25px;
}

/* MAIN CTA */
.hero-buttons .sell-btn{
  padding:16px 32px;
  min-width:210px;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
  background:linear-gradient(135deg,var(--orange),#16A34A);
  color:#fff;
  border:none;
  box-shadow:0 10px 25px rgba(34,197,94,.25);
}

.hero-buttons .sell-btn:hover{
  transform:translateY(-3px);
}

.desktop-hero-banner{
    display:block;
    width:100%;
    height:auto;
}

/* SECONDARY CTA */
.hero-buttons .secondary-btn{
  padding:16px 30px;
  min-width:210px;
  border-radius:14px;
  font-size:17px;
  font-weight:600;
  background:transparent;
  color:#C97B3D;
  border:1.5px solid #C97B3D;
}

.hero-buttons .secondary-btn:hover{
  background:#C97B3D;
  color:#fff !important;
}

/* WHATSAPP */
.hero-buttons .whatsapp-btn{
  padding:16px 24px;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  background:rgba(37,211,102,.12);
  color:#25D366;
  border:1px solid rgba(37,211,102,.4);
  min-width:180px;
}

.hero-buttons .whatsapp-btn:hover{
  background:#25D366;
  color:#fff;
}

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

.hero-buttons{
  flex-direction:column;
  width:100%;
}

.hero-buttons button{
  width:100%;
  min-width:unset;
}

}



.hero{
    position:relative;
    padding:0;
    min-height:auto;
    display:block;
    overflow:hidden;
}


.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;

    color:var(--white) !important;

    margin-bottom:20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 18px;
  color: var(--primary-blue)!important;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}



.hero-badge{
    background:#FFF5E9;

    color:var(--orange);

    border:1px solid rgba(255,122,26,.15);

    padding:10px 20px;

    border-radius:999px;

    font-weight:600;

    margin-bottom:25px;
}

.hero-features {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-features span {
  font-size: 14px;
  color: #9CA3AF;
}


/* Secondary */
.secondary-btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid #C97B3D;
  background: transparent;
  color: #C97B3D;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: #C97B3D;
  color: white;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:750px;

    border-radius:30px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

.desktop-hero-banner{
    display:block;
    width:100%;
    height:auto;
}

.hero-content{
    position:absolute;
    top:50%;
    left:80px;

    transform:translateY(-50%);

    z-index:10;

    max-width:600px;
}

.mobile-hero-banner{
    display:none;
}

@media(max-width:768px){

    .desktop-hero-banner{
        display:none;
    }

    .mobile-hero-banner{
        display:block;
        width:100%;
        height:230px;
        object-fit:cover;
    }

    .hero{
        min-height:auto;
        padding:0;
        display:block;
    }

    .hero-content{
        display:none;
    }
}

/* BRAND STRIP */
/* FLOATING BRAND STRIP */

.brand-floating-strip {
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  background: var(--light-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.brand-floating-strip::before,
.brand-floating-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-floating-strip::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}

.brand-floating-strip::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

.brand-strip-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: brandScroll 25s linear infinite;
}

.brand-floating-strip:hover .brand-strip-track {
  animation-play-state: paused;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 24px;
  min-width: 160px;

  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);

  color: #E5E7EB;
  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.brand-pill img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-pill:hover {
  transform: translateY(-4px) scale(1.04);
  background: rgba(59,130,246,0.16);
  border-color: rgba(59,130,246,0.35);
  color: #fff;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-floating-strip {
    padding: 22px 0;
  }

  .brand-pill {
    min-width: 135px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .brand-pill img {
    width: 26px;
    height: 26px;
  }
}

/* USP HIGHLIGHTED SECTION */

/* PREMIUM LIST STYLE USP */

.usp-premium {
  padding: 110px 20px;
  background: var(--light-bg);
}

.usp-header {
  text-align: center;
  margin-bottom: 60px;
}

.usp-header h2 {
  font-size: 40px;
  color: #fff;
}

.usp-header span {
  color: var(--orange);
}

.usp-header p {
  color: #94A3B8;
  margin-top: 10px;
}

/* LIST */
.usp-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}

/* Vertical line (timeline feel) */
.usp-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #C97B3D, transparent);
  opacity: 0.3;
}

/* ITEM */
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

/* ICON */
.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

/* CONTENT */
.usp-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.usp-content p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */
.usp-item:hover .usp-icon {
  background: rgba(34,197,94,0.2);
  transform: scale(1.1);
}

.usp-item:hover {
  transform: translateX(6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .usp-header h2 {
    font-size: 28px;
  }

  .usp-list::before {
    left: 26px;
  }

  .usp-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* SELL YOUR TABLET SECTION */

.sell-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--light-bg);
}

.sell-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtext {
  color: #9CA3AF;
  margin-bottom: 40px;
}

.sell-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sell-header span {
  color: var(--orange);
}

.sell-header p {
  color: #9CA3AF;
  margin-bottom: 40px;
}

/* Logos */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Card */
.brand-card {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(7, 59, 142, 0.08);
  box-shadow: 0 12px 30px rgba(7, 59, 142, 0.08);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

/* Hover effect */
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Logo */
.brand-card img {
  width: 60px;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* Brand Name */
.brand-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Description */
.brand-card p {
  font-size: 13px;
  color: #9CA3AF;
}

.brand-more-text {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #9CA3AF;
  opacity: 0.9;
}

.brand-more-text::before,
.brand-more-text::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #374151;
  vertical-align: middle;
  margin: 0 10px;
}

/* Steps */
.steps {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(7, 59, 142, 0.08);
  box-shadow: 0 12px 30px rgba(7, 59, 142, 0.08);
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 14px;
  width: 220px;
  text-align: left;
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card h3 {
  margin-bottom: 10px;
  color: var(--orange) !important;
}

.step-card p {
  font-size: 14px;
  color:var(--primary-blue) !important;
}

.sell-section h2 span {
  color: var(--orange);
}

.tablet-search input {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(7, 59, 142, 0.18);
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
}



@media (max-width: 768px) {

  .sell-section {
    padding: 60px 20px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .brand-logos {
    gap: 20px;
  }

  .brand-logos img {
    width: 50px;
  }

  .sell-header h2 {
    font-size: 28px;
  }

  .tablet-search {
    max-width: 100%;
  }

  .brand-more-text {
    font-size: 13px;
    margin-top: 20px;
  }

}

/* Search Box */

.tablet-search {
  position: relative;
  max-width: 400px;
  margin: 30px auto;
}

.tablet-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #374151;
  background: #FAF7F2;
  color: #E5E7EB;
  font-size: 15px;
  outline: none;
}

/* Dropdown */
.tablet-results {
  position: absolute;
  top: 55px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.tablet-results div {
  padding: 12px;
  cursor: pointer;
}

.tablet-results div:hover {
  background: #374151;
}


/* ========================================
   HOW IT WORKS - PREMIUM VERSION
======================================== */

.how-it-works{
    padding:120px 8%;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.how-it-works::before{
    content:"";
    position:absolute;
    top:-250px;
    left:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(13,59,142,.04);

    filter:blur(90px);

    z-index:0;
}

.how-it-works::after{
    content:"";
    position:absolute;
    bottom:-250px;
    right:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,122,26,.05);

    filter:blur(90px);

    z-index:0;
}

/* HEADER */

.how-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 80px;
    position:relative;
    z-index:2;
}

.how-header .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:#FFF5E9;

    border:1px solid rgba(255,122,26,.15);

    color:#FF7A1A;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.how-header h2{
    font-size:64px;
    font-weight:800;
    line-height:1.1;

    color:#0D3B8E !important;

    margin-bottom:18px;
}

.how-header h2 span{
    color:#FF7A1A;
}

.how-header p{
    font-size:20px;
    line-height:1.8;
    color:#5E6B84 !important;
}

/* STEPS WRAPPER */

.how-wrapper{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

/* STEP */

.how-step{
    position:relative;

    background:#fff;

    border-radius:28px;

    padding:40px 28px;

    border:1px solid rgba(13,59,142,.08);

    box-shadow:
    0 15px 40px rgba(13,59,142,.08);

    transition:.35s ease;

    overflow:hidden;
}

.how-step:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(13,59,142,.12);
}

/* BIG NUMBER */

.big-number{
    position:absolute;

    left:15px;
    top:10px;

    font-size:120px;
    font-weight:800;

    line-height:1;

    color:#0D3B8E;

    opacity:.08;

    z-index:1;
}

.big-number.green{
    color:#22C55E;
}

.big-number.purple{
    color:#A855F7;
}

.big-number.orange{
    color:#FF7A1A;
}

/* CONTENT */

.step-content{
    position:relative;
    z-index:2;
    text-align:center;
}

/* IMAGE */

.step-image{
    width:140px;
    height:140px;

    object-fit:contain;

    margin:0 auto 20px;

    display:block;

    transition:.4s ease;
}

.how-step:hover .step-image{
    transform:translateY(-6px) scale(1.05);
}

/* TITLE */

.step-content h3{
    font-size:24px;
    font-weight:700;

    color:#0D3B8E !important;

    margin-bottom:12px;
}

/* DESCRIPTION */

.step-content p{
    font-size:15px;
    line-height:1.8;

    color:#5E6B84 !important;
}

/* TRUST BAR */

.how-trust-bar{

    margin-top:70px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:18px;

    position:relative;
    z-index:2;
}

.trust-item{

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    border-radius:999px;

    background:#fff;

    border:1px solid rgba(13,59,142,.08);

    box-shadow:
    0 10px 25px rgba(13,59,142,.06);

    font-weight:600;

    color:#0D3B8E;
}

.trust-item .material-icons{
    color:#FF7A1A;
    font-size:22px;
}

/* HOVER */

.trust-item:hover{
    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:1100px){

    .how-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .how-header h2{
        font-size:52px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .how-it-works{
        padding:80px 20px;
        grid-template-columns:repeat(2,2fr) !important;
    }

    .how-wrapper{
        grid-template-columns:repeat(2,2fr) !important;
    }

    .how-header{
        margin-bottom:50px;
    }

    .how-header h2{
        font-size:38px;
    }

    .how-header p{
        font-size:16px;
    }

    .how-step{
        padding:30px 20px;
    }

    .big-number{
        font-size:90px;
    }

    .step-image{
        width:110px;
        height:110px;
    }

    .step-content h3{
        font-size:20px;
    }

    .trust-item{
        width:100%;
        justify-content:center;
    }
}
/* ==========================
   WHY CHOOSE US SECTION
========================== */

.why-choose-premium{

    position:relative;

    padding:120px 8%;

    min-height:850px;

    overflow:hidden;

    background:
    url("Assets/Why_Choose_Us.webp")
    center center/cover no-repeat;
}

/* Background Blur Layer */

.why-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    background:
    linear-gradient(
        135deg,
        rgba(245,239,230,.82),
        rgba(250,248,245,.75)
    );

    z-index:1;
}

/* Content Layer */

.why-header,
.why-glass-card{

    position:relative;

    z-index:2;
}

/* ==========================
   HEADER
========================== */

.why-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px auto;
}

.why-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 22px;

    border-radius:999px;

    background:#FFF5E9;

    border:1px solid rgba(255,122,26,.15);

    color:var(--orange);

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;
}

.why-header h2{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:18px;

    color:var(--primary-blue)!important;
}

.why-header h2 span{

    color:var(--orange);
}

.why-header p{

    font-size:22px;

    line-height:1.7;

    color:var(--primary-blue)!important;

    max-width:700px;

    margin:auto;
}

/* ==========================
   GLASS CARD
========================== */

.why-glass-card{

    max-width:1000px;

    margin:auto;

    padding:55px;

    border-radius:35px;

    background:
    rgba(255,255,255,.55);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

/* ==========================
   ITEMS
========================== */

.why-item{

    display:flex;

    align-items:center;

    gap:25px;

    padding:28px 0;

    border-bottom:
    1px solid rgba(13,59,142,.08);
}

.why-item:last-child{

    border-bottom:none;
}

/* ==========================
   ICONS
========================== */

.why-icon{

    width:72px;

    height:72px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #FFF5E9,
        #FFE6CC
    );

    box-shadow:
    0 10px 25px rgba(255,122,26,.12);
}

.why-icon .material-icons{

    font-size:34px;

    color:var(--orange);
}

.why-icon img{
    width:50px;
    height:50px;
}

/* ==========================
   TEXT
========================== */

.why-item h3{

    font-size:30px;

    font-weight:700;

    color:var(--primary-blue) !important;

    margin-bottom:8px;
}

.why-item p{

    font-size:18px;

    line-height:1.8;

    color:var(--primary-blue)!important;
}

/* ==========================
   HOVER EFFECT
========================== */

.why-item{

    transition:.35s ease;
}

.why-item:hover{

    transform:translateX(10px);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .why-choose-premium{

        padding:80px 20px;
    }

    .why-header h2{

        font-size:42px;
    }

    .why-header p{

        font-size:18px;
    }

    .why-glass-card{

        padding:30px;
    }

    .why-item{

        align-items:flex-start;
    }

    .why-item h3{

        font-size:24px;
    }

    .why-item p{

        font-size:16px;
    }

    .why-icon{

        width:60px;
        height:60px;
    }

    .why-icon .material-icons{

        font-size:28px;
    }
}


/* DEVICES WE BUY */
/* ==========================================
   DEVICES WE BUY - MODERN PREMIUM SECTION
========================================== */

.devices-modern{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        var(--off-white),
        var(--cream)
    );

    overflow:hidden;
}

/* Decorative Background Glow */

.devices-modern::before{

    content:"";

    position:absolute;

    top:-200px;
    left:-150px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,122,26,.05);

    filter:blur(80px);

    z-index:0;
}

.devices-modern::after{

    content:"";

    position:absolute;

    bottom:-200px;
    right:-150px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(13,59,142,.05);

    filter:blur(80px);

    z-index:0;
}

/* ==========================================
   HEADER
========================================== */

.devices-header{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;
}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:#FFF5E9;

    border:1px solid rgba(255,122,26,.15);

    color:var(--orange);

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;
}

.devices-header h2{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    letter-spacing:-2px;

    color:var(--primary-blue)!important;

    margin-bottom:20px;
}

.devices-header h2 span{

    color:var(--primary-blue);
}

.devices-header p{

    font-size:22px;

    line-height:1.8;

    color:var(--primary-blue)!important;

    max-width:700px;

    margin:auto;
}

/* ==========================================
   GRID
========================================== */

.devices-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    repeat(3,3fr);

    gap:24px;
}
/* ==========================================
   DEVICE CARD
========================================== */

.device-box{

    background:#ffffff;

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(13,59,142,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

    position:relative;

    overflow:hidden;
}

/* Hover Glow */

.device-box::before{

    content:"";

    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(255,122,26,.06);

    transition:.4s ease;
}

.device-box:hover{

    transform:translateY(-10px);

    border-color:
    rgba(255,122,26,.2);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.device-box:hover::before{

    transform:scale(1.2);
}

/* ==========================================
   ICON
========================================== */

.device-box .material-icons{

    font-size:54px;

    color:var(--orange);

    margin-bottom:22px;

    display:block;
}

/* ==========================================
   TITLE
========================================== */

.device-box h3{

    font-size:30px;

    font-weight:700;

    color:var(--primary-blue)!important;

    margin-bottom:12px;
}

/* ==========================================
   DESCRIPTION
========================================== */

.device-box p{

    font-size:17px;

    line-height:1.8;

    color:var(--text-muted);

    margin-bottom:24px;
}

/* ==========================================
   LINK
========================================== */

.device-box a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:var(--orange);

    font-weight:700;

    transition:.3s ease;
}

.device-box a:hover{

    transform:translateX(6px);
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

    .devices-modern{

        padding:90px 5%;
    }

    .devices-header h2{

        font-size:56px;
    }

    .devices-header p{

        font-size:20px;
    }
}

@media(max-width:768px){


  .devices-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;
}

    .devices-modern{

        padding:60px 16px;
    }

    .devices-header{

        margin-bottom:60px;
    }

    .devices-header h2{

        font-size:38px;

        letter-spacing:0;
    }

    .devices-header p{

        font-size:18px;
    }

    .device-box{

        padding:28px;
    }

    .device-box h3{

        font-size:20px;
    }

    .device-box p{

        font-size:16px;
    }

    .device-box .material-icons{

        font-size:46px;
    }
}

@media(max-width:480px){

    .devices-header h2{

        font-size:36px;
    }

    .section-tag{

        font-size:14px;

        padding:10px 18px;
    }
}

/* FAQ SECTION */

.faq-section {
  padding: 110px 20px;
  background:
    radial-gradient(circle at top right, rgba(255,107,0,0.08), transparent 35%),
    linear-gradient(180deg, var(--cream), var(--white)) !important;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  max-width: 1180px;
  margin: auto;
}

.faq-left span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 44px;
  color:var(--primary-blue)!important;
  line-height: 1.2;
  margin: 16px 0;
}

.faq-left h2 span {
  color: #C97B3D;
}

.faq-left p {
  color: var(--primary-blue)!important;
  font-size: 16px;
  line-height: 1.7;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-bottom: 1px solid var(--orange-dark)!important;
  padding: 0 0 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--primary-blue)!important;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 52px 18px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:var(--primary-blue);
  color: #C97B3D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--primary-blue);
  color: var(--orange);
}

.faq-item p {
  color: var(--mc-blue-dark)!important;
  font-size: 15px;
  line-height: 1.7;
  padding-right: 55px;
  animation: faqFade 0.25s ease;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:hover summary {
  color: var(--orange);
}

/* MOBILE */

@media (max-width: 768px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 75px 20px;
  }

  .faq-left h2 {
    font-size: 32px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .faq-item p {
    padding-right: 0;
  }
}

/* FINAL CTA */
/* FINAL CTA SECTION */

.cta-final {
  margin-top: 80px;
  padding: 60px 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  border-radius: 20px;

  background:
    linear-gradient(135deg, var(--off-white),var(--white)),
    #FFFFFFb8 !important;

  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);

  position: relative;
  overflow: hidden;
}

/* 🔥 FIXED OVERLAY */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right,var(--mc-orange), transparent 40%);
  opacity: 0.5;

  pointer-events: none; /* ✅ FIX: allows clicking */
}

/* TEXT */
.cta-content h2 {
  font-size: 32px;
  color:var(--primary-blue)!important;
  margin-bottom: 10px;
}

.cta-content p {
  font-weight: 50px;
  color: var(--mc-orange) !important;
  font-size: 15px;
}

/* BUTTON */
.cta-action button {
  padding: 16px 32px;
  border-radius: 14px;
  border: none;

  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
  position: relative;
  z-index: 2; /* ensures it's above overlay */
}

.cta-action button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 107, 0, 0.4);
}
/* FOOTER SECTION */
/* PREMIUM FOOTER */

.premium-footer {
  background: linear-gradient(
  135deg,
  var(--white),
  var(--off-white)
);
  padding: 90px 60px 35px;
  color: #E5E7EB;
}
.premium-footer,
.premium-footer p,
.premium-footer a,
.premium-footer h3{
  color:#2F2A24 !important;
}

.footer-logo img {
  height: 250px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 18px rgba(255,107,0,0.3));
  transform: translateX(-8px);
}

.footer-wrap {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  margin-left: -50px;
}

.footer-logo .material-icons {
  font-size: 46px;
  color: #C97B3D;
}

.footer-logo h2 {
  font-size: 34px;
  color: #fff;
}

.footer-logo h2 span {
  color: var(--orange);
}

.footer-brand > p {
  color:var(--primary-blue) !important;
  font-size: 16px;
  line-height: 1.8;
  max-width: 360px;
}

.footer-line {
  width: 85%;
  height: 1px;
  background: linear-gradient(to right, #C97B3D, transparent);
  margin: 28px 0;
}

.footer-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-points div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-points span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(59,130,246,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-points p {
  color: #FFFFFF;
  line-height: 1.5;
}

.footer-points b {
  color:var(--primary-blue);
}

.footer-col h3,
.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 32px;
  position: relative;
  color:var(--mc-orange) !important;
}

.footer-col h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 48px;
  height: 2px;
  background: #C97B3D;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:var(--primary-blue) !important;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  transition: 0.3s;
}

.footer-col a:hover {
  color:var(--mc-orange);
  transform: translateX(6px);
}

.footer-col a span {
  color:var(--primary-blue) !important;
  font-size: 24px;
}

.contact-card {
  background: var(--off-white);
  color: var(--text-dark);
  border: 1px solid rgba(7, 59, 142, 0.08);
  box-shadow: 0 12px 30px var(--white)!important;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-row .material-icons {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(59,130,246,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row p {
  color: #94A3B8;
  line-height: 1.5;
}

.contact-row b {
  color: #fff;
}

.contact-card b{
  color:var(--primary-blue)
}

.contact-card button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}


.contact-link{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:inherit;

    transition:.3s ease;

    border-radius:16px;
}

.contact-link:hover{

    transform:translateX(6px);

    color:var(--orange);
}

.footer-contact a{

    color:inherit;

    text-decoration:none;

    transition:all .3s ease;
}

.footer-contact a:hover{

    color:var(--orange);

    text-decoration:none;
}

.secure-text {
  margin-top: 24px;
  color:var(--orange-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.secure-text span {
  color: #C97B3D;
}

.footer-bottom {
  max-width: 1250px;
  margin: 65px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  color:var(--primary-blue) !important;
}

.footer-bottom p span {
  color: var(--orange);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5E7EB;
}

.footer-tags {
  display: flex;
  gap: 25px;
}

.footer-tags p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tags span {
  font-size: 18px;
}

/* MOBILE */

@media (max-width: 768px) {
  .premium-footer {
    padding: 60px 20px 28px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand,
  .footer-col,
  .footer-contact {
    text-align: left;
  }

  .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tags {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* FOOTER POLICY LINKS */

.footer-policy-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:20px;
}

.footer-policy-links a{
  text-decoration:none;
  color:#B6C2D2;
  font-size:14px;
  transition:0.3s ease;
  position:relative;
}

.footer-policy-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:1px;
  background:var(--orange);
  transition:0.3s;
}

.footer-policy-links a:hover{
  color:var(--orange);
}

.footer-policy-links a:hover::after{
  width:100%;
}

/* MOBILE */

@media(max-width:768px){

.footer-policy-links{
  gap:12px;
  margin-top:15px;
}

.footer-policy-links a{
  font-size:13px;
}

}
/* CONTACT US PAGE */
/* CONTACT SECTION */

.contact-section {
  padding: 110px 20px;
  background: var(--light-bg);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-left span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

.contact-left h2 {
  font-size: 40px;
  margin: 15px 0;
  color:var(--primary-blue) !important;
}

.contact-left h2 span {
  color: #C97B3D;
}

.contact-left p {
  color:var(--mc-orange) !important;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  background: var(--white);
  color: var(--primary-blue);
  border: 1px solid rgba(7, 59, 142, 0.08);
  box-shadow: 0 12px 30px rgba(7, 59, 142, 0.08);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);

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

/* INPUTS */
.contact-form input,
.contact-form textarea {
  background: var(--off-white);
  color: var(--primary-blue);
  border: 1px solid rgba(7, 59, 142, 0.18);
  padding: 14px;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C97B3D;
}

/* BUTTON */
.contact-form button {
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 15px;

  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);

  cursor: pointer;
  transition: 0.3s;

  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 107, 0, 0.4);
}

/* STATUS */
.form-status {
  font-size: 14px;
  color: var(--orange);
  text-align: center;
}

/* =========================
   MOBYCART FINAL MODERN FIX
   According to LOGO
========================= */

:root {
  --mc-bg: #061326;
  --mc-bg-2: #081B34;
  --mc-card: #0B2342;
  --mc-blue: #1E6BFF;
  --mc-blue-dark: #073B8E;
  --mc-orange: #FF6B00;
  --mc-orange-2: #FF8A2A;
  --mc-white: #FFFFFF;
  --mc-muted: #A9B8CC;
  --mc-border: rgba(255,255,255,0.10);
}

/* base */
body {
  background: var(--cream) !important;
  color: var(--mc-white) !important;
}

section:hover {
  transform: none;
}

h1, h2, h3 {
  color: var(--mc-white) !important;
}

p {
  color: var(--mc-muted) !important;
}

.logo {
  color: var(--mc-white) !important;
  display: flex;
  align-items: center;
}

.logo::first-letter {
  color: var(--mc-orange);
}

.nav-links a {
  color:#4A433C
}

.nav-links a:hover {
  color:#C97B3D 
}

/* hero */

.hero-sell-btn{
    position:absolute;

    left:50px;      /* adjust horizontally */
    bottom:170px;   /* adjust vertically */

    background:linear-gradient(
      135deg,
      #ff7a1a,
      #ff9f43
    );

    color:#fff;
    text-decoration:none;

    padding:16px 38px;

    border-radius:14px;

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

    box-shadow:0 10px 25px rgba(255,122,26,.35);

    z-index:20;

    transition:.3s;
}

@media(max-width:768px){

  .hero-sell-btn{
    visibility: hidden;
  }

}

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

.hero h1 span {
  color: var(--mc-orange) !important;
}

.hero-badge {
  background: rgba(255,107,0,0.12) !important;
  color: var(--mc-orange) !important;
  border: 1px solid rgba(255,107,0,0.25);
}

/* buttons */
.sell-btn,
.hero-buttons .sell-btn,
.cta-action button,
.contact-form button {
  background: linear-gradient(135deg, var(--mc-orange-2), var(--mc-orange)) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 15px 35px rgba(255,107,0,0.32) !important;
}

.secondary-btn,
.hero-buttons .secondary-btn {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.22) !important;
}

.secondary-btn:hover,
.hero-buttons .secondary-btn:hover {
  background: var(--mc-blue) !important;
  border-color: var(--mc-blue) !important;
}

/* sections */
.usp-premium,
.sell-section,
.devices-buy{
  background:
    radial-gradient(circle at top right, rgba(255,107,0,0.08), transparent 35%),
    linear-gradient(180deg, var(--mc-bg), var(--mc-bg-2)) !important;
}

/* cards */
.brand-card,
.step-card{
  background: rgba(11, 35, 66, 0.82) !important;
  color: var(--mc-white) !important;
  border: 1px solid var(--mc-border) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28) !important;
  border-radius: 22px !important;
}

.brand-card:hover,
.how-card:hover,
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,0,0.35) !important;
}

/* inputs */
.search-box input,
.tablet-search input{
  background: rgba(255,255,255,0.06) !important;
  color: var(--mc-white) !important;
  border: 1px solid var(--mc-border) !important;
}

.search-box input::placeholder,
.tablet-search input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mc-muted);
}

/* brand strip */
.brand-floating-strip {
  background: #FFFFFF !important;
  border-top: 1px solid var(--mc-border);
  border-bottom: 1px solid var(--mc-border);
}

.brand-pill {
  background: rgba(255,255,255,0.06) !important;
  color: black !important;
  border: 1px solid var(--mc-border) !important;
}

.brand-pill:hover {
  background: rgba(255,107,0,0.14) !important;
  color: var(--mc-orange) !important;
}

/* icons */
.usp-icon,
.step-number {
  background: rgba(255,107,0,0.14) !important;
  color: var(--mc-orange) !important;
}

.how-card .material-icons,
.why-item .material-icons,
.device-main .material-icons {
  color: var(--mc-orange) !important;
}

/* devices + FAQ */
.device-categories div{
  color: var(--mc-white) !important;
  border-bottom-color: var(--mc-border) !important;
}

.faq-item summary::after {
  background: rgba(255,107,0,0.12) !important;
  color: var(--mc-orange) !important;
}

.footer-logo h2 span,
.footer-bottom p span,
.footer-col a:hover {
  color: var(--mc-orange) !important;
}

.reveal,
.fade-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.js .reveal,
.js .fade-in {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(6px);
}

.js .reveal.active,
.js .fade-in.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* MOBILE AND TABLET SECTION */
.device-category-section{
  padding:110px 20px;
  background:var(--off-white);
}

.device-category-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 60px;
}

.device-category-header span{
  color:var(--primary-blue);
  font-weight:800;
  font-size:15px;
  letter-spacing:.5px;
}

.device-category-header h2{
  font-size:44px;
  font-weight:800px!important;
  margin:14px 0;
  color:var(--primary-blue) !important;
}

.device-category-header h2 b{
  color:var(--primary-blue);
}

.device-category-header p{
  color:var(--primary-blue) !important;
  font-size:17px;
}

.device-category-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
}

.device-category-card{
  position:relative;
  overflow:hidden;
  min-height:430px;
  padding:44px;
  border-radius:30px;
  background:linear-gradient(145deg,var(--white),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 25px 70px rgba(0,0,0,.35);
  backdrop-filter:blur(16px);
  transition:.35s ease;
}

.device-category-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,107,0,.5);
  box-shadow:0 30px 80px rgba(255,107,0,.14);
}

.device-category-card::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-80px;
  top:-80px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6b00,#073b8e);
  opacity:.22;
}

.device-icon{
  width:78px;
  height:78px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  background:linear-gradient(135deg,#ff6b00,#073b8e);
  box-shadow:0 18px 40px rgba(255,107,0,.22);
}

.device-icon .material-icons{
  font-size:42px;
  color:#fff;
}

.device-category-card h3{
  font-size:32px;
  margin-bottom:16px;
  color:var(--primary-blue) !important;
}

.device-category-card p{
  font-size:16px;
  line-height:1.7;
  color:var(--orange) !important;
  margin-bottom:28px;
}

.device-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:34px;
}

.device-tags span{
  padding:10px 15px;
  border-radius:999px;
  background:var(--primary-blue);
  color:#e5e7eb;
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  font-weight:700;
}

.device-category-card button{
  border:none;
  padding:16px 32px;
  border-radius:15px;
  background:linear-gradient(135deg,#ff6b00,#e85f00);
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(255,107,0,.30);
  transition:.3s ease;
}

.device-category-card button:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 45px rgba(255,107,0,.45);
}

.tablet-card .device-icon{
  background:linear-gradient(135deg,#073b8e,#16a34a);
}

@media(max-width:768px){
  .device-category-section{
    padding:75px 18px;
  }

  .device-category-header h2{
    font-size:30px;
  }

  .device-category-grid{
    grid-template-columns:1fr;
  }

  .device-category-card{
    min-height:auto;
    padding:30px 24px;
  }

  .device-category-card h3{
    font-size:25px;
  }
}


/* NAVBAR SEARCH ABOVE ALL SECTIONS */
.navbar{
  z-index: 999999 !important;
}

.navbar{
    position: relative;
    z-index: 100000 !important;
}

.nav-right{
  position: relative;
  z-index: 1000;
}

.nav-right button{
  pointer-events:auto;
}

@media(max-width:768px){

  .search-results{
    width:260px !important;
    left:0 !important;
    right:auto !important;

    top:calc(100% + 8px) !important;

    max-height:250px;
    overflow-y:auto;
  }

}



/* COOKIE SECTION */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FAF7F2;
  color: white;
  padding: 16px 22px;
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.cookie-banner a {
  color: #C97B3D;
  text-decoration: underline;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#acceptCookies {
  background: #22C55E;
  color: white;
}

#rejectCookies {
  background: #EF4444;
  color: white;
}

/* LOGIN */

.login-btn{
  padding:12px 24px;
  border-radius:10px;
  border:1px solid #073B8E;
  background:white;
  color:#073B8E;
  cursor:pointer;
  font-weight:600;
  position: relative;
  z-index: 100000;
}

.login-btn{
    position: relative;
    z-index: 100001 !important;
    pointer-events: auto !important;
}

.login-btn:hover{
  background:#073B8E;
  color:white;
}

.login-btn{
  padding:12px 24px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  font-weight:600;
  background:#021c45;
  color:white;
}

@media (max-width:768px){

  .login-btn{
    display:none;
  }

}

@media(max-width:768px){

  .nav-right{
    gap:10px;
  }

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

  .menu-toggle{
    font-size:30px;
  }

}

.login-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.login-modal.active{
  display:flex;
}

.login-box{
  background:white;
  width:400px;
  max-width:90%;
  padding:30px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  gap:15px;
  position:relative;
}

.login-box h2{
  text-align:center;
}

.login-box input{
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
}

.login-box button{
  padding:14px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  background:#073B8E;
  color:white;
}

.close-login{
  position:absolute;
  right:15px;
  top:10px;
  font-size:28px;
  cursor:pointer;
}

.login-modal {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.8) !important;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999 !important;
}

.login-modal.active {
  display: flex !important;
}

#forgotPasswordBtn{
  background:none;
  border:none;
  color:#073B8E;
  cursor:pointer;
  margin-top:10px;
}


.quick-actions{
  padding:100px 8%;
  background:var(--cream);
}

.quick-header{
  text-align:center;
  margin-bottom:60px;
}

.quick-header span{
  color:var(--primary-blue);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.quick-header h2{
  margin-top:10px;
  font-size:42px;
  color:var(--primary-blue) !important;
}

.quick-header p{
  margin-top:15px;
  color:var(--primary-blue) !important;
}

.quick-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.action-card{
  background:var(--off-white);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:40px;
  text-align:center;
  transition:.35s ease;
  backdrop-filter:blur(12px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.action-card:hover{
  transform:translateY(-10px);
  border-color:var(--white);
  box-shadow:0 25px 60px rgba(255,107,0,.18);
}

.action-icon{
  width:80px;
  height:80px;
  margin:0 auto 25px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    135deg,
    #ff6b00,
    #073b8e
  );
}

.action-icon .material-icons{
  font-size:40px;
  color:white;
}

.action-card h3{
  color:var(--primary-blue) !important;
  margin-bottom:15px;
  font-size:24px;
}

.action-card p{
  color:var(--primary-blue) !important;
  line-height:1.7;
  margin-bottom:25px;
}

.action-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  color:white;
  background:linear-gradient(
    135deg,
    #ff6b00,
    #e85f00
  );
  font-weight:700;
}

@media(max-width:768px){

  .quick-actions{
    padding:70px 20px;
  }
  

  .quick-header h2{
    font-size:30px;
  }

}


/* HRO SEARCH */
.hero-search-wrapper{
  position:relative;
  width:100%;
  max-width:700px;
  margin-top:40px;
}

#heroSearch{
  width:100%;
  height:70px;
  padding:0 25px;

  border-radius:18px;
  border:1px solid rgba(255,255,255,.15);

  background:rgba(255,255,255,.08);
  backdrop-filter:blur(15px);

  color:#fff;
  font-size:20px;

  outline:none;
}

#heroSearch::placeholder{
  color:#cbd5e1;
}

#heroResults{
  position:absolute;
  top:100%;
  left:0;

  width:100%;

  display:none;
  flex-direction:column;

  background:rgba(7,20,45,.98);

  border:1px solid rgba(255,255,255,.08);

  border-radius:0 0 20px 20px;

  overflow:hidden;

  max-height:350px;
  overflow-y:auto;

  box-shadow:
  0 15px 40px rgba(0,0,0,.35);

  z-index:9999;
}

#heroResults div{
  padding:16px 22px;

  color:#fff;
  font-size:16px;

  cursor:pointer;

  border-bottom:
  1px solid rgba(255,255,255,.05);

  transition:.25s;
}

#heroResults div:hover{
  background:
  rgba(255,107,0,.15);

  color:#ff7b00;

  padding-left:30px;
}


/* Navbar sell gadgets */
.nav-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    width:250px;

    background:#fff;

    border-radius:12px;

    padding:10px 0;

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

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.25s;

    z-index:9999;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:10px 18px;
    color:#073B8E;
    text-decoration:none;
}

.dropdown-menu a:hover{
    background:#FFFFFF;
}

.dropdown-heading{
    padding:10px 18px;
    font-size:13px;
    font-weight:700;
    color:#FF7A1A;
    text-transform:uppercase;
}

.mobile-submenu{
  display:none;
  margin-top:10px;
  padding-left:15px;
}

.mobile-submenu.active{
  display:block;
}

.mobile-submenu li{
  list-style:none;
}

.mobile-submenu a{
  display:block;
  padding:10px 0;
  font-size:15px;
}

.submenu-title{
  font-size:12px;
  font-weight:700;
  color:#FF7A1A;
  text-transform:uppercase;
  margin-top:10px;
}

.mobile-dropdown > a{
  display:flex;
  justify-content:space-between;
  align-items:center;
}




.hero-search-section{
  padding:60px 20px;
  background:#f8fbff;
}

.hero-search-card{
  max-width:1000px;
  margin:auto;

  background:white;

  border-radius:28px;

  padding:45px;

  text-align:center;

  box-shadow:
  0 20px 60px rgba(13,59,142,.08);

  border:1px solid rgba(13,59,142,.08);
}

.search-tag{
  display:inline-block;

  background:#eef4ff;
  color:#0D3B8E;

  padding:10px 18px;

  border-radius:999px;

  font-weight:600;

  margin-bottom:20px;
}

.hero-search-card h2{
  font-size:42px;
  margin-bottom:10px;
}

.hero-search-card p{
  font-size:18px;
  margin-bottom:30px;
}

.hero-search-wrapper{
  display:flex;
  align-items:center;
  gap:15px;

  background:#fff;

  border:2px solid #e6eefc;

  border-radius:18px;

  padding:12px;

  transition:.3s;
}

.hero-search-wrapper:focus-within{
  border-color:#0D3B8E;
  box-shadow:
  0 0 0 6px rgba(13,59,142,.08);
}

.search-icon-big{
  font-size:32px;
  color:#0D3B8E;
  margin-left:10px;
}

.hero-search-wrapper input{
  flex:1;
  border:none;
  outline:none;
  font-size:18px;
  padding:15px;
}

.hero-search-wrapper button{
  height:58px;
  padding:0 35px;

  border:none;

  border-radius:14px;

  background:linear-gradient(
    135deg,
    #ff7a1a,
    #ff9f43
  );

  color:white;

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

  cursor:pointer;

  transition:.3s;
}

.hero-search-wrapper button:hover{
  transform:translateY(-2px);
}

@media(max-width:768px){

  .hero-search-card{
    padding:25px;
  }

  .hero-search-card h2{
    font-size:28px;
  }

  .hero-search-wrapper{
    flex-direction:column;
    align-items:stretch;
  }

  .search-icon-big{
    display:none;
  }

  .hero-search-wrapper button{
    width:100%;
  }

}

.hero-search-wrapper{
    position:relative;
}

.hero-results{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:none;
    flex-direction:column;

    max-height:350px;
    overflow-y:auto;

    z-index:9999;
}

.hero-results div{
    padding:15px 20px;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.hero-results div:hover{
    background:#f8fbff;
}

.hero-search-wrapper{
    position:relative;
}

.hero-results{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#fff;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:none;
    flex-direction:column;

    z-index:9999;
}

.search-results{
  position:absolute;
  top:60px;
  right:0;

  width:320px;
  max-width:90vw;

  background:#FFFFFF;   /* Solid white */
  border:1px solid #E5E7EB;
  border-radius:12px;

  max-height:320px;
  overflow-y:auto;

  box-shadow:0 10px 30px rgba(0,0,0,0.12);

  z-index:1000001;
}

.search-results div{
  padding:14px 18px;
  color:#073B8E;
  font-size:15px;
  font-weight:500;
  border-bottom:1px solid #F1F5F9;
}

.search-results div:last-child{
  border-bottom:none;
}

.search-results div:hover{
  background:#FFF1E6;
  color:#FF7A1A;
}

/* NAVBAR SEARCH DROPDOWN */
.search-results{
    background:#FFFFFF !important;
    border:1px solid #E5E7EB !important;
    border-radius:12px !important;
    box-shadow:0 10px 30px rgba(0,0,0,0.12) !important;
    overflow:hidden;
}

.search-results div{
    color:#073B8E !important;
    background:#FFFFFF !important;
    padding:14px 18px !important;
    font-weight:600;
    border-bottom:1px solid #F1F5F9;
}

.search-results div:last-child{
    border-bottom:none;
}

.search-results div:hover{
    background:#FFF1E6 !important;
    color:#FF7A1A !important;
}

.search-results div{
    display:block !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;

    color:#073B8E !important;
    font-weight:600 !important;
    padding:12px 18px !important;
    line-height:1.4 !important;
}

.search-results{
    width:320px !important;
    max-height:300px !important;
    overflow-y:auto !important;
}

.search-results{
    display:block !important;
    width:320px !important;
    background:#fff !important;
}

.search-results div{
    display:block !important;
    width:100% !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;

    padding:12px 16px !important;

    color:#073B8E !important;
    font-weight:600 !important;

    border-bottom:1px solid #eee;
}

.search-results div:last-child{
    border-bottom:none;
}