@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f6f8fc;
  color: #1a1a1a;
  line-height: 1.5;
}

/* 🔥 NAVBAR GLASS */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  padding: 16px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #ff6b00;
}

.nav-btn {
  background: linear-gradient(135deg,#ff6b00,#ff9248);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.35);
}

/* 🔥 HERO PREMIUM */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 110px 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.cta-btn {
  background: linear-gradient(135deg,#ff6b00,#ff9248);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,107,0,0.4);
}

/* 🔥 SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#ff6b00,#ff9248);
  opacity: 0;
  transition: 0.35s;
  z-index: 0;
}

.card:hover::before {
  opacity: 0.08;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.icon {
  font-size: 44px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card h3 {
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.card p {
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 1;
}

/* 🔥 BOOKING PREMIUM */
.booking {
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

.booking-box {
  background: white;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  width: 340px;
  text-align: center;
}

.booking-box h2 {
  margin-bottom: 18px;
  font-weight: 600;
}

input, select, button {
  width: 100%;
  padding: 13px;
  margin-top: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}

button {
  background: linear-gradient(135deg,#ff6b00,#ff9248);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,107,0,0.35);
}

/* 🔥 FOOTER */
footer {
  text-align: center;
  padding: 22px;
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 60px;
  font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .navbar {
    padding: 14px 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .booking-box {
    width: 92%;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Trust bar */
.trust {
  padding: 30px 20px;
  background: #ffffff;
}

.trust-box {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 15px;
  flex-wrap: wrap;
  font-weight: 500;
  color: #ff6b00;
}

/* Glass booking */
.booking-box {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.9);
}

/* Success popup */
.success-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  background: #16a34a;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 9999;
}

.success-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* 🔥 Page fade in */
.fade-in {
  animation: pageFade 0.6s ease;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🔥 Navbar scroll effect */
.nav-scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* 🔥 Card click ripple */
.card.clicked {
  transform: scale(0.96);
}

/* 🔥 Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: spin 0.6s linear infinite;
}

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

/* 🔥 Hero glow */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}

/* 🔥 Better spacing mobile */
@media (max-width: 600px) {
  .services {
    padding: 60px 16px;
  }
}
.location-row {
  display: flex;
  gap: 8px;
}

.loc-btn {
  width: 48px;
  background: #ff6b00;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.logout-btn {
  padding: 8px 14px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.logout-btn:hover {
  background: #dc2626;
}
.rating-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.rating-box {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  width: 320px;
  text-align: center;
}

.rating-box h2 {
  margin-bottom: 15px;
}

.rating-box textarea,
.rating-box input,
.rating-box select {
  width: 100%;
  margin-top: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: #ff6b00;
}

.logo-img {
  height: 56px;
  width: auto;
}
.ai-chat-widget{
position:fixed;
bottom:20px;
left:20px;
width:300px;
background:white;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.2);
overflow:hidden;
font-size:14px;
z-index: 100 ;
}

.ai-header{
background:#ff6b00;
color:white;
padding:10px;
font-weight:600;
}

.ai-messages{
height:220px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

.ai-user{
background:#ff6b00;
color:white;
padding:6px 10px;
border-radius:8px;
margin:6px 0;
text-align:right;
}

.ai-bot{
background:white;
padding:6px 10px;
border-radius:8px;
margin:6px 0;
}

.ai-input-area{
display:flex;
border-top:1px solid #ddd;
}

.ai-input-area input{
flex:1;
border:none;
padding:8px;
}

.ai-input-area button{
border:none;
background:#ff6b00;
color:white;
padding:8px 12px;
cursor:pointer;
}
.voice-box{
text-align:center;
margin-bottom:20px;
}

.voice-box button{
background:#ff6b00;
color:white;
border:none;
padding:10px 16px;
border-radius:6px;
cursor:pointer;
}

#voiceText{
margin-top:10px;
font-weight:500;
}
.ai-chat-widget{
position:fixed;
bottom:120px;
right:20px;
width:320px;
background:white;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
overflow:hidden;
z-index:9999;
}

.ai-header{
background:#ff6b00;
color:white;
padding:10px;
font-weight:600;
}

.ai-messages{
height:220px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

.ai-input-area{
display:flex;
gap:6px;
padding:10px;
border-top:1px solid #ddd;
background:white;
}

.ai-input-area input{
flex:1;
height:36px;
padding:6px 10px;
border:1px solid #ccc;
border-radius:6px;
outline:none;
}

.ai-input-area button{
background:#ff6b00;
color:white;
border:none;
padding:6px 14px;
border-radius:6px;
cursor:pointer;
}
.ai-chat-widget{
position:fixed;
bottom:120px;
right:20px;
width:340px;
background:white;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.25);
overflow:hidden;
display:flex;
flex-direction:column;
z-index:9999;
}

.ai-header{
background:#ff6b00;
color:white;
padding:10px;
font-weight:600;
}

.ai-messages{
height:240px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

/* INPUT AREA FIX */
.ai-input-area{
display:flex;
flex-direction:column;
padding:10px;
gap:8px;
background:white;
border-top:1px solid #ddd;
}

.ai-input-area input{
width:100%;
height:40px;
padding:8px 10px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;
outline:none;
}

.ai-input-area button{
width:100%;
height:40px;
background:#ff6b00;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:500;
}

/* Chat toggle icon */
.chat-toggle{
position:fixed;
bottom:90px;
right:20px;
width:55px;
height:55px;
background:#ff6b00;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
z-index:9999;
}

/* Chat box hidden by default */
.ai-chat-widget{
display:none;
position:fixed;
bottom:160px;
right:20px;
width:320px;
background:white;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.25);
overflow:hidden;
z-index:9999;
}

/* Header */
.ai-header{
display:flex;
justify-content:space-between;
align-items:center;
background:#ff6b00;
color:white;
padding:10px;
font-weight:600;
}

.ai-header button{
background:none;
border:none;
color:white;
font-size:18px;
cursor:pointer;
}

/* Messages */
.ai-messages{
height:220px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

/* Input */
.ai-input-area{
display:flex;
padding:10px;
gap:5px;
}

.ai-input-area input{
flex:1;
padding:8px;
border:1px solid #ccc;
border-radius:6px;
}

.ai-input-area button{
background:#ff6b00;
color:white;
border:none;
padding:8px 12px;
border-radius:6px;
cursor:pointer;
}
/* Chat icon */
.chat-toggle{
position:fixed;
bottom:90px;
right:20px;
width:60px;
height:60px;
background:linear-gradient(135deg,#ff6b00,#ff9248);
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
cursor:pointer;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
z-index:9999;
transition:0.3s;
}

.chat-toggle:hover{
transform:scale(1.1);
}

/* Badge */
.chat-badge{
position:absolute;
top:-5px;
right:-5px;
background:red;
color:white;
font-size:12px;
padding:3px 6px;
border-radius:50%;
}

/* Chatbox */
.ai-chat-widget{
display:none;
position:fixed;
bottom:160px;
right:20px;
width:340px;
background:white;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.3);
overflow:hidden;
flex-direction:column;
animation:fadeUp 0.3s ease;
z-index:9999;
}

@keyframes fadeUp{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:translateY(0);}
}

/* Header */
.ai-header{
display:flex;
justify-content:space-between;
background:#ff6b00;
color:white;
padding:12px;
font-weight:600;
}

/* Messages */
.ai-messages{
height:240px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

/* Bot & user bubble */
.ai-user{
background:#ff6b00;
color:white;
padding:6px 10px;
border-radius:10px;
margin:6px 0;
text-align:right;
}

.ai-bot{
background:white;
padding:6px 10px;
border-radius:10px;
margin:6px 0;
}

/* Typing */
.typing{
font-size:12px;
color:#888;
}

/* Input */
.ai-input-area{
display:flex;
gap:6px;
padding:10px;
border-top:1px solid #ddd;
}

.ai-input-area input{
flex:1;
padding:8px;
border:1px solid #ccc;
border-radius:6px;
}

.ai-input-area button{
background:#ff6b00;
color:white;
border:none;
padding:8px 12px;
border-radius:6px;
cursor:pointer;
}
.tracking{
padding:60px 20px;
display:flex;
justify-content:center;
}
.track-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.track-box{
  background:white;
  padding:25px;
  border-radius:12px;
  width:320px;
  text-align:center;
}
/* FIX: Navbar buttons width normal */
.nav-btn {
  background: linear-gradient(135deg,#ff6b00,#ff9248);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
/* Status styles */
.status {
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}

.status.pending {
  background: #fff3cd;
  color: #856404;
}

.status.progress {
  background: #d1ecf1;
  color: #0c5460;
  animation: pulse 1s infinite;
}

.status.done {
  background: #d4edda;
  color: #155724;
}

/* animation */
@keyframes pulse {
  0% {opacity: 0.6;}
  50% {opacity: 1;}
  100% {opacity: 0.6;}
}
/* Auth modal */
.auth-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.auth-box{
background:white;
padding:30px;
border-radius:14px;
width:320px;
text-align:center;
position:relative;
animation:fadeUp 0.3s ease;
}

.auth-box input{
width:100%;
padding:10px;
margin-top:10px;
border:1px solid #ddd;
border-radius:6px;
}

.auth-box button{
width:100%;
margin-top:12px;
padding:10px;
border:none;
border-radius:6px;
background:#ff6b00;
color:white;
cursor:pointer;
}

.google-btn{
background:white !important;
color:#333 !important;
border:1px solid #ddd !important;
}

.close-btn{
position:absolute;
top:10px;
right:10px;
background:none !important;
color:#333 !important;
font-size:18px;
cursor:pointer;
}
/* User box */
.user-box{
display:flex;
align-items:center;
gap:8px;
background:#fff;
padding:5px 10px;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* Avatar */
.avatar{
width:32px;
height:32px;
background:linear-gradient(135deg,#ff6b00,#ff9248);
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}

/* Username */
#userName{
font-size:14px;
font-weight:500;
}

/* Logout small button */
.logout-btn{
padding:6px 10px;
font-size:12px;
background:#ef4444;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
}

.logout-btn:hover{
background:#dc2626;
}
.avatar{
width:34px;
height:34px;
background:linear-gradient(135deg,#ff6b00,#ff9248);
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
font-size:14px;
box-shadow:0 4px 10px rgba(255,107,0,0.4);
transition:0.3s;
}

.avatar:hover{
transform:scale(1.1);
}
.user-box{
display:flex;
align-items:center;
gap:10px;
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
padding:6px 12px;
border-radius:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.user-box:hover{
transform:translateY(-2px);
}
.logout-btn{
padding:6px 10px;
font-size:12px;
background:#ef4444;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
transition:0.2s;
}

.logout-btn:hover{
background:#dc2626;
transform:scale(1.05);
}
/* Avatar box */
.user-avatar-box{
position:relative;
}

/* Avatar */
.avatar{
width:36px;
height:36px;
background:linear-gradient(135deg,#ff6b00,#ff9248);
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
cursor:pointer;
}

/* Dropdown */
.profile-menu{
position:absolute;
top:45px;
right:0;
background:white;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
padding:10px;
width:160px;
display:none;
z-index:9999;
}

/* Name */
.profile-name{
font-weight:600;
margin-bottom:8px;
font-size:14px;
}

/* Buttons */
.profile-menu button{
width:100%;
padding:8px;
margin-top:5px;
border:none;
background:#f5f5f5;
border-radius:6px;
cursor:pointer;
}

.profile-menu button:hover{
background:#ff6b00;
color:white;
}
/* 🔥 PROFILE MENU PREMIUM LOOK */

.profile-menu{
  background: #1e293b; /* dark premium */
  border-radius: 12px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.profile-name{
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 5px 10px;
}

/* buttons */
.profile-menu button{
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* dashboard button */
.profile-menu button:first-of-type{
  background: #3b82f6;
  color: #fff;
}

/* logout button */
.profile-menu button:last-of-type{
  background: #ef4444;
  color: #fff;
}

/* hover effect */
.profile-menu button:hover{
  opacity: 0.9;
}
.avatar{
  width: 36px;
  height: 36px;
  background: #f97316;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}
.avatar{
  width: 36px;
  height: 36px;
  background: #f97316;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}
.hero{
  position: relative;
  background: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952") center/cover;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.5);
}

.hero-text{
  position:relative;
  color:#fff;
}
.card{
  background:#fff;
  border-radius:12px;
  padding:15px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.card:hover{
  transform: translateY(-8px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.card .icon{
  font-size:30px;
  margin-bottom:10px;
}
.booking-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.booking-box input,
.booking-box select{
  width:100%;
  padding:10px;
  margin-top:10px;
  border-radius:6px;
  border:1px solid #ddd;
}

.booking-box button{
  width:100%;
  margin-top:12px;
  padding:10px;
  background:#f97316;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.booking-box button:hover{
  background:#ea580c;
}
.user-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar{
  width:36px;
  height:36px;
  background:#f97316;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  cursor:pointer;
}

.profile-menu{
  background:#1e293b;
  border-radius:12px;
  padding:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.profile-menu button{
  width:100%;
  padding:8px;
  margin-top:5px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.profile-menu button:first-child{
  background:#3b82f6;
  color:#fff;
}

.profile-menu button:last-child{
  background:#ef4444;
  color:#fff;
}
.ai-chat-widget{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.ai-header{
  background:#0f172a;
  color:#fff;
}

.ai-user{
  background:#f97316;
  color:#fff;
  padding:6px;
  border-radius:6px;
  margin-top:5px;
}

.ai-bot{
  background:#e2e8f0;
  padding:6px;
  border-radius:6px;
  margin-top:5px;
}
.partner-btn {
  background: #ff7a00;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
}

.partner-btn:hover {
  background: #e56b00;
}
.nav-btn {
  background: #ff7a00;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #e56b00;
}

.home-btn:hover {
  background: #e56b00;

}

/* NAVBAR PREMIUM */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0f172a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

/* BUTTON BASE */
.nav-btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  margin-left: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* HOME BUTTON */
.home-btn {
  background: linear-gradient(135deg, #1e293b, #334155);
}

/* PARTNER BUTTON */
.partner-btn {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
}

/* WORKER BUTTON */
.worker-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

/* HOVER EFFECT */
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0f172a;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
}

.logo-img {
  height: 35px;
}

/* BUTTON BASE */
.nav-btn {
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

/* BUTTON VARIANTS */
.home-btn {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.partner-btn {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
}

.worker-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

/* HOVER */
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* USER BOX */
.user-box {
  position: relative;
}

/* AVATAR */
.avatar {
  background: #ff7a00;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
}

/* PROFILE MENU */
.profile-menu {
  position: absolute;
  right: 0;
  top: 45px;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 8px;
  width: 150px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  display: none;
}

.profile-menu button {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: none;
  background: #f1f5f9;
  cursor: pointer;
  border-radius: 5px;
}

.profile-menu button:hover {
  background: #e2e8f0;
}
/* PAGE TITLE */
.page-title {
  text-align: center;
  margin-top: 40px;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
}

/* FORM CONTAINER */
.form-container {
  width: 350px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

/* FLOAT LABEL */
.input-group label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #777;
  font-size: 14px;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  background: white;
  padding: 0 4px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}
/* WORKERS GRID */
#workersList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
}

/* CARD */
.worker-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}

.worker-card:hover {
  transform: translateY(-5px);
}

/* NAME */
.worker-card h3 {
  margin-bottom: 10px;
}

/* BUTTON */
.book-btn {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.book-btn:hover {
  opacity: 0.9;
}
/* Partner Page Background */
.partner-bg {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  min-height: 100vh;
}

/* Workers Page Background */
.workers-bg {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  min-height: 100vh;
}