/* Hide Scrollbar (globally — any scrollable element, any browser) */
* {
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE / legacy Edge */
}

*::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, modern Edge */
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Universal Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
/* Body Section */
body {
  background: #f6f6f6;
  width: 100%;
}

html {
  width: 100%;
}

.home-container,
.about-container,
.service-container,
.faq-container,
.footer-container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Menu Bar Section */
.menu-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #000;
  backdrop-filter: blur(10px);
}
.menu-bar-links-left,
.menu-bar-links-right {
  display: flex;
  align-items: center;
}

.menu-bar-links-left {
  gap: 25px;
}

.menu-bar-links-right {
  gap: 16px;
}

.signup-nav-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.signup-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.signup-nav-link:hover::before {
  animation: shimmer 1s infinite ease-in-out;
}

.signup-nav-link:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Logo Icon */
.logo-section {
  margin-right: 20px;
}

.logo-section img {
  width: 45px;
  height: auto;
}

.menu-bar-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* Home, About, Services, FAQs */
.menu-bar-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Menu Bar Hover Animation */
.menu-bar-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
}

.menu-bar-links a:hover {
  color: #d4af37;
}

.menu-bar-links a:hover::after {
  width: 100%;
}

.menu-bar-links a.active {
  color: #d4af37;
}

.menu-bar-links a.active::after {
  width: 100%;
}

/* Menu Bar Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Search Bar Input */
.search-bar input {
  width: 150px;
  padding: 10px 18px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  width: 400px;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Search Button */
.search-bar button {
  position: relative;
  overflow: hidden;
  padding: 8px 16px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Search Bar Hover Animation */
.search-bar button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.search-bar button:hover::before {
  animation: shimmer 1s infinite ease-in-out;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Login Button */
.login-btn button {
  position: relative;
  background: #d4af37;
  border: none;
  color: #000;
  padding: 10px 24px;
  border-radius: 25px;
  letter-spacing: 1px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.login-btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.login-btn button:hover::before {
  animation: shimmer 1s infinite ease-in-out;
}

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

/* Home Container */
.home-container {
  margin-top: -80px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Background Image */
.home-container-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-container-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.home-container-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Left Content of Home Container */
.home-container-left {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  padding-right: 20px;
  padding-left: 60px;
  max-width: 650px;
  width: 100%;
}

/* Home Logo Section */
.home-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Logo Image */
.home-logo-section img {
  transform: translateX(-20px);
  max-width: 280px;
  height: auto;
}

.home-logo-section h1 {
  color: #d4af37;
  font-family: "Rufina";
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.home-logo-section p {
  color: #fff;
  font-size: clamp(0.88rem, 2.2vw, 1.1rem);
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
  text-align: justify;
  letter-spacing: 0.8px;
}

.home-container-left::before,
.home-logo-section::before,
.home-group-btn::before {
  display: none !important;
  content: none !important;
}

.home-group-btn {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  transform: translateX(-6px);
}

/* Plan and Browse Button */
.plan-btn,
.create-btn {
  position: relative;
  overflow: hidden;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  color: #000;
  border: none;
}

/* Shimmer Effect */
.plan-btn::before,
.create-btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.plan-btn:hover::before,
.create-btn:hover::before {
  animation: shimmer 1s infinite ease-in-out;
}

/* Plan Button Color*/
.plan-btn {
  background: #d4af37;
  border: none;
  color: #000;
}

/* Browse Button Color */
.create-btn {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

/* Button Left Effect */
.plan-btn:hover,
.create-btn:hover {
  transform: translateY(-2px);
}

/* About Section */
.about-container {
  min-height: 100vh;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* About Content */
.about-content {
  max-width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: "Rufina";
}

.about-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* About Card */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.about-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 35px;
  border-radius: 15px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 100px;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon svg {
  font-size: 3rem;
  margin-bottom: 25px;
  width: 70px;
  height: 70px;
  fill: #d4af37;
}

.card-title {
  font-size: 1.5rem;
  font-family: "Rufina";
  font-weight: 900;
  color: #000;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.card-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* About Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: #d4af37;
  font-family: "Rufina";
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Service Provider Section */
.service-container {
  background-color: #000;
  min-height: 100vh;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Service Content */
.service-content {
  max-width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-header {
  text-align: center;
  margin-bottom: 80px;
}

.service-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: "Rufina";
}

.service-description {
  font-size: 1.1rem;
  color: #ebebeb;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* Slider Section */
.slider-container {
  position: relative;
  padding: 0 60px;
  margin-top: -30px;
}

.slider-wrapper {
  padding: 20px;
  overflow: hidden;
  border-radius: 12px;
  height: auto;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: all 0.5s ease-in-out;
}

.vendor-card {
  min-width: calc((100% - 80px) / 5);
  background: #1a1a19;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 280px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.vendor-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(212, 175, 55, 0.5);
}

.vendor-card .card-icon {
  color: #fff;
}

.vendor-card .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-align: center;
  color: #ebebeb;
  text-transform: uppercase;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d4af37;
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
  background: #444;
  color: #666;
  cursor: not-allowed;
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d4af37;
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: #d4af37;
}

/* FAQS Section */
.faq-container {
  min-height: 100vh;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* About Content */
.faq-content {
  max-width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: "Rufina";
}

.faq-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4af37;
}

.faq-question {
  width: 100%;
  padding: 28px 35px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.faq-question:hover {
  color: #d4af37;
}

.faq-icon {
  font-size: 1.5rem;
  color: #d4af37;
  transition: all 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 35px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 28px 35px;
}

.faq-answer p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* FAQS Hover State */

.faq-item:hover .faq-question {
  color: #d4af37;
}

.faq-item:hover .faq-icon {
  color: #d4af37;
}

.faq-item:hover {
  background: #000;
  backdrop-filter: blur(10px);
}

/* Active (Clicked) State */
.faq-item.active {
  background: #000;
  border-color: #d4af37;
}

.faq-item.active .faq-question {
  color: #d4af37;
}

.faq-item.active .faq-answer p {
  color: #ebebeb;
}

.faq-item.active .faq-icon {
  color: #d4af37;
}

/* Footer Section */
.footer-container {
  background: #000;
  position: relative;
  overflow: hidden;
}

.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px 40px 80px;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
  width: 130px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 1.05rem;
  color: #ebebeb;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* Footer Links Columns */
.footer-column {
  animation-fill-mode: both;
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #ebebeb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

/* Footer Bottom Section */
.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation-fill-mode: both;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #ebebeb;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: #ebebeb;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #d4af37;
}

.footer-social {
    display: flex;
    list-style: none;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.footer-social-icon svg {
    display: block;
    width: 50px;
    height: 50px;
}

.footer-social-icon:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.footer-social-icon:hover svg path {
    fill: #000;
}

/* Login Modal Section */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

/* Login Modal Box */
.login-modal {
  width: 480px;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(202, 168, 74, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease;
  margin: auto;
}

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

.logo-section-login {
  text-align: center;
  margin-bottom: 15px;
}

.logo-section-login img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(202, 168, 74, 0.3));
}

/* Title */
.login-modal h1 {
  text-align: center;
  font-family: "Rufina";
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.8rem;
}

/* Input Group */
.input-group-login {
  margin-bottom: 14px;
}

.input-group-login label {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.input-group-login input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(42, 42, 42, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-weight: 300;
}

.input-group-login::placeholder {
  color: #ffffff6e;
}

.input-group-login input:focus {
  outline: none;
  border-color: #caa84a;
  background: rgba(42, 42, 42, 0.8);
  box-shadow:
    0 0 0 3px rgba(202, 168, 74, 0.15),
    0 4px 12px rgba(202, 168, 74, 0.2);
}

/* Forgot Password */
.forgot-password {
  text-align: right;
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transform: translateY(2px);
}

.forgot-password a {
  font-size: 13px;
  text-decoration: none;
  color: #d4af37;
  letter-spacing: 0.8px;
  transition: 0.3s ease;
}

.forgot-password a:hover {
  color: #e6c35c;
  text-decoration: underline;
}

/* Modal Login Button */
.modal-login-btn {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #caa84a 0%, #e6c35c 100%);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  transition: 0.3s ease;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 10px;
}

.modal-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(202, 168, 74, 0.25);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(42, 42, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(202, 168, 74, 0.3);
  color: #caa84a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  background: #caa84a;
  transform: rotate(90deg);
}

.close-btn svg:hover {
  fill: #000;
}

/* Sign Up Link */
.signup-link-login {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: #d9d9d9;
  transition: color 0.3s ease;
}

.signup-link-login a {
  color: #d4af37;
  text-decoration: none;
}

.signup-link-login a:hover {
  color: #e6c35c;
  text-decoration: underline;
}

.menu-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}

.menu-hamburger span {
  width: 24px;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-hamburger.open span:nth-child(2) { opacity: 0; }
.menu-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-bar {
    overflow: visible;
  }
  .menu-bar-links,
  .search-bar {
    display: none;
  }
  .menu-hamburger {
    display: flex;
  }
  .menu-bar-links-left {
    gap: 12px;
  }
  .menu-bar {
    flex-wrap: nowrap;
  }
  .login-btn button {
    flex-shrink: 0;
  }
  .menu-bar-links.mobile-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #000;
    padding: 20px 30px;
    gap: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 200;
  }
  .menu-bar-links.mobile-open,
  .menu-bar-links.mobile-open li,
  .menu-bar-links.mobile-open a {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .menu-bar { padding: 12px 16px; }
.menu-bar-links-left { gap: 10px; }

  /* Hero - fix overflow */
  .home-container { overflow: hidden; }
  .home-container-left { 
    padding-left: 20px; 
    padding-right: 20px; 
    max-width: 100%;
    width: 100%;
  }
  .home-logo-section { 
    align-items: center;
    text-align: center;
  }
  .home-logo-section img { 
    max-width: 200px; 
    transform: none;
  }
  .home-logo-section h1 { 
    font-size: 1.8rem; 
    text-align: center;
  }
  .home-logo-section p { 
    font-size: 0.88rem; 
    text-align: center;
  }
  .home-group-btn { 
    justify-content: center; 
    transform: none;
    flex-wrap: wrap;
  }

  /* About */
  .about-container { padding: 60px 20px; }
  .about-title { font-size: 1.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-card { margin-bottom: 0; padding: 30px 20px; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }

  /* Services */
  .service-container { padding: 60px 20px; }
  .service-title { font-size: 1.8rem; }
  .slider-container { padding: 0 40px; }
  .vendor-card { min-width: calc((100% - 20px) / 2); height: 200px; }

  /* FAQ */
  .faq-container { padding: 60px 20px; }
  .faq-title { font-size: 1.8rem; }
  .faq-question { padding: 18px 20px; font-size: 0.9rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 20px 20px; }

  /* Footer */
  .footer-content { padding: 40px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }

  .login-btn button { 
    padding: 8px 14px; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px;
  }
}