/* Updated color scheme to white background, black text, and light green accents to match logo */
:root,
[data-bs-theme="light"] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #000000;
  --bs-primary: #7ed321;
  --bs-primary-rgb: 126, 211, 33;
  --bs-primary-hover: #6bb91a;
  --bs-primary-hover-rgb: 107, 185, 26;
  /* Added purple accent colors to match logo */
  --bs-purple: #8b5cf6;
  --bs-purple-light: #a78bfa;
  --bs-purple-dark: #7c3aed;
  --bs-secondary: #f5f5f5;
  --bs-secondary-rgb: 245, 245, 245;
  --bs-heading-color: #000000;
  --inverse-color: #000000;
  --inverse-color-rgb: 0, 0, 0;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #000000;
  --nav-hover-color: var(--bs-primary);
  --dropdown-bg: #f8f8f8;
  --dropdown-color: #000000;
  --dropdown-hover-bg: #e8e8e8;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
  --accent-gradient: linear-gradient(135deg, #7ed321 0%, #6bb91a 100%);
  /* Added purple gradient for distinct purple elements */
  --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

body {
  font: 1rem / 1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Added luxury typography with Playfair Display for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--bs-heading-color);
  font-weight: 600;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
}

::selection {
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-primary);
  text-decoration: none;
}
a:hover {
  color: var(--bs-primary-hover);
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin-top: -30px;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

/* Updated button styles for luxury neon green theme */
.btn {
  padding: 12px 24px;
  background: var(--accent-gradient);
  color: var(--bs-body-bg);
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.btn:hover,
.btn:active,
.btn:focus {
  color: var(--bs-body-bg);
  background: var(--bs-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 211, 33, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
}
.btn-outline:hover {
  background: var(--bs-primary);
  color: var(--bs-body-bg);
}

/* New white button style for elements that were previously purple */
.btn-white {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}
.btn-white:hover {
  background: #f8f8f8;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Show WhatsApp button at top right on mobile */
@media (max-width: 991.98px) {
  header .ms-auto.d-none.d-lg-flex {
    display: flex !important;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10000;
  }
}

.fbs__net-navbar {
  position: relative;
  top: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 99999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border: none;
  left: 0;
  right: 0;
}

.fbs__net-navbar > .container-fluid {
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Added WhatsApp floating button */
/* WhatsApp floating button bottom-left */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px; /* distance from bottom */
  left: 20px; /* move to left instead of right */
  z-index: 1000;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px; /* adjust for mobile */
  }
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--bs-body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(126, 211, 33, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(126, 211, 33, 0.6);
  color: var(--bs-body-bg);
}

/* Updated logo styling */
.logo-main {
  position: absolute; /* removes it from normal flow */
  top: 0rem; /* vertically center relative to navbar */
  left: -1rem; /* adjust horizontal position */
  height: 4.4rem; /* or whatever size you want */
  max-width: 180px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-brand {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

/* Updated hero section for luxury design */
.hero__v6 {
  padding: 3rem 0 0rem 0 !important;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(126, 211, 33, 0.1) 50%, transparent 100%);
}

/* Remove green shading on mobile devices for elegant design */
@media (max-width: 768px) {
  .hero__v6 {
    padding: 8rem 0 4rem 0 !important;
    background: transparent; /* Remove gradient background on mobile */
  }
}

@media (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-title {
    font-size: 2.5rem;
  }
}

/* Updated hero subtitle to use white button style instead of purple */
.hero__v6 .hero-subtitle {
  background: #ffffff;
  color: #000000;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 20px;
  border: 2px solid #000000;
}

.hero__v6 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #000000 0%, #7ed321 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__v6 .hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Updated service cards for luxury design */
/* Updated service subtitle to use white button style instead of purple */
.services__v3 .subtitle {
  background: #ffffff;
  color: #000000;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
  border: 2px solid #000000;
}

.services__v3 .service-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.services__v3 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(139, 92, 246, 0.3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.services__v3 .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.1);
}

.services__v3 .service-card.featured {
  background: linear-gradient(135deg, #7ed321 0%, #6bb91a 100%);
  color: var(--bs-body-bg);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
}

.services__v3 .service-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.services__v3 .service-card.featured h3,
.services__v3 .service-card.featured p {
  color: var(--bs-body-bg);
}

.services__v3 .popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--bs-body-bg);
  color: var(--bs-primary);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.popular-badge {
  padding-top: 1rem !important;
}

.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: var(--bs-primary) !important;
  font-size: 2.5rem;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60px;
  height: 60px;
  right: -15px;
  bottom: -5px;
  border-radius: 50%;
  background: rgba(126, 211, 33, 0.1);
}

.services__v3 .price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  margin-top: auto;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(126, 211, 33, 0.2);
}

.services__v3 .service-card.featured .price-tag {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price,
.price-setup,
.or,
.once-off,
.once-off-panel {
  padding: 0 !important;
  margin: 0;
  line-height: 1.3;
}

.price {
  font-size: 1.75rem !important;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
}

.services__v3 .service-card.featured .price {
  color: var(--bs-body-bg);
}

.price-setup {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.services__v3 .service-card.featured .price-setup {
  color: rgba(255, 255, 255, 0.7);
}

.or {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0.5rem 0;
  position: relative;
}

.or::before,
.or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.or::before {
  left: -40px;
}

.or::after {
  right: -40px;
}

.once-off {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
}

.services__v3 .service-card.featured .once-off {
  color: var(--bs-body-bg);
}

.once-off-panel {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}

.services__v3 .service-card.featured .once-off-panel {
  color: rgba(255, 255, 255, 0.6);
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

/* Added portfolio section styling */
.portfolio {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

/* Updated portfolio subtitle to use white button style */
.portfolio .subtitle {
  background: #ffffff;
  color: #000000;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
  border: 2px solid #000000;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  transition: all 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Made portfolio overlay purple accent more subtle */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(139, 92, 246, 0.7));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-overlay h4 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.875rem;
}

/* Updated contact/quote form styling */
/* Updated contact subtitle to use white button style */
.contact__v2 {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(126, 211, 33, 0.05) 100%);
}

.contact__v2 .subtitle {
  background: #ffffff;
  color: #000000;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
  border: 2px solid #000000;
}

/* Made form border purple accent more subtle */
.form-control {
  padding: 15px 20px;
  border: 2px solid rgba(139, 92, 246, 0.1);
  font-size: 16px;
  background-color: rgba(248, 248, 248, 0.5);
  border-radius: 10px;
  color: var(--bs-body-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  background-color: rgba(248, 248, 248, 0.8);
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* Updated footer styling */
/* Made footer border purple accent more subtle */
.footer {
  background-color: #f8f8f8;
  font-size: 15px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer .credits {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.7);
}

/* Updated back to top button */
#back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  background: var(--accent-gradient);
  color: var(--bs-body-bg);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(126, 211, 33, 0.4);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  width: 50px;
  height: 50px;
}

#back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(126, 211, 33, 0.6);
}

#back-to-top i {
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#back-to-top.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

/* Added responsive design improvements */
@media (max-width: 768px) {
  .hero__v6 {
    padding: 8rem 0 4rem 0 !important;
    background: transparent; /* Remove gradient background on mobile */
  }

  .hero__v6 .hero-title {
    font-size: 2rem;
  }

  .services__v3 .service-card {
    margin-bottom: 2rem;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Added smooth scrolling and animations */
html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.lux-website-block {
  padding-top: 20%;
}

.extra {
  font-weight: 700;
  color: var(--bs-primary);
  font-size: 1.1rem;
}
