:root {
  /* Extracted Logo Colors */
  --vp-primary: #6a2e2a;
  /* Dark Mahogany */
  --vp-accent: #cf6c37;
  /* Warm Terracotta */
  --vp-primary-dark: #4d211e;

  /* Backgrounds (Light & Clean Theme) */
  --vp-bg-white: #ffffff;
  --vp-bg-light: #f8f9fa;
  --vp-bg-soft: #fdfbf9;

  /* Text Colors */
  --vp-text-dark: #2b2b2b;
  --vp-text-muted: #666666;

  /* Fonts */
  --vp-font-heading: "Playfair Display", serif;
  --vp-font-body: "Plus Jakarta Sans", sans-serif;

  /* Shadows & Transitions */
  --vp-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --vp-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
  --vp-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --vp-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--vp-font-body);
  color: var(--vp-text-dark);
  background-color: var(--vp-bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vp-font-heading);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: var(--vp-transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ----------------------------------------------------
           4. FIXED CONTACT ICONS (BOTTOM RIGHT)
           ---------------------------------------------------- */
.vp-fixed-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.vp-fixed-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--vp-transition);
  position: relative;
}

/* Premium Tooltip */
.vp-fixed-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: var(--vp-text-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: var(--vp-transition);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vp-fixed-btn:hover::before {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

.vp-fixed-btn:hover {
  transform: translateY(-5px) scale(1.1);
  color: #fff;
}

.vp-btn-whatsapp {
  background-color: #25d366;
}
.vp-btn-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.vp-btn-call {
  background-color: var(--vp-primary); /* Brand Mahogany */
}
.vp-btn-call:hover {
  box-shadow: 0 15px 30px rgba(106, 46, 42, 0.4);
}

.vp-btn-email {
  background-color: var(--vp-accent); /* Brand Terracotta */
}
.vp-btn-email:hover {
  box-shadow: 0 15px 30px rgba(207, 108, 55, 0.4);
}

@media (max-width: 991px) {
  .vp-blog-hero {
    height: auto;
    padding: 120px 0 80px 0;
  }
  .vp-hero-content h1 {
    font-size: 3rem;
  }
  .vp-blog-intro h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  /* Mobile adjustment for fixed icons */
  .vp-fixed-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .vp-fixed-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .vp-fixed-btn::before {
    display: none; /* Hide tooltips on mobile to prevent overflow */
  }
}

/* --- TOPBAR --- */
.vp-topbar {
  background-color: var(--vp-primary-dark);
  color: var(--vp-bg-soft);
  font-size: 0.85rem;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.vp-topbar a {
  color: rgba(255, 255, 255, 0.8);
}

.vp-topbar a:hover {
  color: var(--vp-accent);
}

.vp-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-left: 8px;
}

.vp-social-icons a:hover {
  background-color: var(--vp-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* --- NAVBAR --- */
.vp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vp-bg-white);
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  /* padding: 10px 0; */
  /* Added padding to header */
}

.navbar-brand img {
  height: 78px;
  /* Adjusted logo size */
  transition: var(--vp-transition);
}

.vp-nav-link {
  color: var(--vp-text-dark) !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 18px;
  /* Increased gap between nav links */
  position: relative;
  padding: 5px 0 !important;
  /* Increased padding */
}

.vp-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--vp-accent);
  transition: var(--vp-transition);
}

.vp-nav-link:hover::after,
.vp-nav-link.active::after {
  width: 100%;
}

/* Dropdown Styling */
.vp-dropdown {
  position: relative;
}

.vp-dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--vp-bg-white);
  min-width: 220px;
  box-shadow: var(--vp-shadow-md);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--vp-transition);
  border-top: 3px solid var(--vp-primary);
  z-index: 1010;
}

.vp-dropdown:hover .vp-dropdown-menu,
.vp-dropdown.active .vp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}

.vp-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--vp-text-dark);
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vp-dropdown-menu li:last-child a {
  border-bottom: none;
}

.vp-dropdown-menu li a:hover {
  background-color: var(--vp-bg-soft);
  color: var(--vp-primary);
  padding-left: 25px;
  /* Premium indent effect */
}

/* Hamburger Icon */
.vp-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--vp-primary);
  cursor: pointer;
  outline: none;
}

/* --- FULLSCREEN MENU --- */
.vp-fs-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--vp-bg-white);
  z-index: 2000;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.vp-fs-menu.open {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.vp-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: var(--vp-primary);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vp-transition);
}

.vp-close-btn:hover {
  background: var(--vp-accent);
  transform: rotate(90deg);
}

/* Left Side - Map */
.vp-fs-map {
  width: 50%;
  height: 100%;
  position: relative;
}

.vp-fs-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* filter: grayscale(100%) contrast(1.1); */
  /* Premium minimal look */
}

/* Right Side - Content */
.vp-fs-content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 10%;
  background: linear-gradient(
    135deg,
    var(--vp-bg-white) 0%,
    var(--vp-bg-soft) 100%
  );
}

.vp-fs-links li {
  margin-bottom: 20px;
}

.vp-fs-links a {
  font-family: var(--vp-font-heading);
  font-size: 2.5rem;
  color: var(--vp-text-dark);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.vp-fs-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 0;
  background-color: var(--vp-accent);
  transition: width 0.4s ease;
}

.vp-fs-links a:hover::after {
  width: 100%;
}

.vp-fs-links a:hover {
  color: var(--vp-primary);
}

.vp-fs-social {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.vp-fs-social a {
  color: var(--vp-primary);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-fs-social a:hover {
  background-color: var(--vp-primary);
  color: #fff;
}

@media (max-width: 991px) {
  .vp-fs-map {
    display: none;
  }

  .vp-fs-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .vp-fs-links a {
    font-size: 2rem;
  }
}

/* --- HERO SLIDER (3D NOTEBOOK EFFECT) --- */
.vp-hero-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  /* Adjust for header */
  perspective: 2500px;
  /* Essential for 3D effect */
  overflow: hidden;
  background-color: #000;
  /* Dark background to hide behind pages */
}

.vp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  /* Hinged at the left like a book */
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /* Hides the back of the flipped page */
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  /* Book page shadow */
}

.vp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Dark overlay for text readability */
.vp-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Darker gradient for much better text visibility */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.vp-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  /* Perfect left alignment */
  z-index: 3;
  pointer-events: none;
  /* Let clicks pass to slider */
}

.vp-slide-content-inner {
  max-width: 700px;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease 0.6s,
    transform 0.8s ease 0.6s;
  pointer-events: auto;
  /* Enable clicks for buttons */
}

.vp-slide.active .vp-slide-content-inner {
  opacity: 1;
  transform: translateX(0);
}

.vp-slide-subtitle {
  color: var(--vp-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.vp-slide-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
  /* FIX: Added white color to heading */
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  /* FIX: Added shadow for better readability */
}

@media (max-width: 768px) {
  .vp-slide-title {
    font-size: 2.5rem;
  }

  .vp-hero-wrapper {
    height: 70vh;
  }
}

/* Thumbnails Styling */
.vp-thumbnails-container {
  position: absolute;
  bottom: 60px;
  right: 5%;
  z-index: 100;
  display: flex;
  gap: 15px;
}

.vp-thumb {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: var(--vp-transition);
  opacity: 1;
}

.vp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-thumb.active {
  opacity: 1;
  border-color: var(--vp-accent);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.vp-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--vp-transition);
}

.vp-thumb.active::before {
  background: transparent;
}

/* */
/* --- ABOUT US SECTION (PREMIUM) --- */
.vp-about-section {
  padding: 80px 0;
  background-color: var(--vp-bg-white);
  position: relative;
  overflow: hidden;
}

/* Large Background Watermark */
.vp-about-watermark {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-size: 18rem;
  font-family: var(--vp-font-heading);
  color: rgba(106, 46, 42, 0.02);
  /* Extremely subtle */
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  letter-spacing: 15px;
  white-space: nowrap;
}

/* Left Side: Images */
.vp-about-img-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 40px;
  padding-bottom: 40px;
}

.vp-about-main-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--vp-shadow-md);
  object-fit: cover;
  height: 520px;
  transition: var(--vp-transition);
  position: relative;
  z-index: 1;
}

/* Floating Overlap Image */
.vp-about-float-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 350px;
  object-fit: cover;
  border: 15px solid var(--vp-bg-white);
  border-radius: 4px;
  box-shadow: var(--vp-shadow-lg);
  z-index: 3;
  transition: var(--vp-transition);
}

.vp-about-img-wrapper:hover .vp-about-float-img {
  transform: scale(1.05) translateY(-15px) rotate(2deg);
}

.vp-about-img-wrapper:hover .vp-about-main-img {
  transform: scale(0.98);
  filter: brightness(0.9);
}

/* Floating Trust Badge */
.vp-experience-badge {
  position: absolute;
  top: 50px;
  left: -40px;
  background: linear-gradient(
    135deg,
    var(--vp-primary) 0%,
    var(--vp-primary-dark) 100%
  );
  color: #fff;
  padding: 30px 40px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(106, 46, 42, 0.3);
  z-index: 4;
  animation: floatUp 4s ease-in-out infinite;
  border-bottom: 4px solid var(--vp-accent);
}

.vp-experience-badge h3 {
  font-size: 3.5rem;
  margin: 0;
  color: #fff;
  line-height: 1;
}

.vp-experience-badge p {
  margin: 8px 0 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--vp-font-body);
  opacity: 0.9;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Right Side: Content */
.vp-about-content {
  position: relative;
  z-index: 1;
}

.vp-about-subtitle {
  color: var(--vp-accent);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}

.vp-about-subtitle::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--vp-accent);
  margin-right: 15px;
}

.vp-about-title {
  font-size: 3.5rem;
  color: var(--vp-text-dark);
  line-height: 1.15;
  margin-bottom: 30px;
}

.vp-about-text {
  color: var(--vp-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Feature List */
.vp-feature-list {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vp-feature-list li {
  font-size: 1.05rem;
  color: var(--vp-text-dark);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.vp-feature-list i {
  color: var(--vp-accent);
  font-size: 1rem;
  margin-right: 15px;
  background: rgba(207, 108, 55, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--vp-transition);
}

.vp-feature-list li:hover i {
  background: var(--vp-accent);
  color: #fff;
  transform: scale(1.1) rotate(360deg);
}

/* Premium Solid Button */
.vp-btn-solid {
  background-color: var(--vp-primary);
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--vp-primary);
  transition: var(--vp-transition);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.vp-btn-solid i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.vp-btn-solid:hover {
  background-color: var(--vp-bg-white);
  color: var(--vp-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(106, 46, 42, 0.2);
}

.vp-btn-solid:hover i {
  transform: translateX(8px);
}

@media (max-width: 991px) {
  .vp-about-watermark {
    display: none;
  }

  .vp-about-section {
    padding: 80px 0;
  }

  .vp-about-title {
    font-size: 2.5rem;
  }

  .vp-experience-badge {
    left: 0;
    top: -20px;
    padding: 20px 25px;
  }

  .vp-experience-badge h3 {
    font-size: 2.5rem;
  }

  .vp-about-img-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .vp-about-float-img {
    width: 70%;
    height: 250px;
    border-width: 8px;
  }

  .vp-about-main-img {
    height: 400px;
  }

  .vp-feature-list {
    grid-template-columns: 1fr;
  }
}

/* --- PRODUCTS SECTION (NEW) --- */
.vp-products-section {
  padding: 60px 0;
  background-color: var(--vp-bg-light);
  /* Off-white for contrast against the previous section */
}

.vp-section-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.vp-section-subtitle {
  color: var(--vp-accent);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.vp-section-title {
  font-size: 3rem;
  color: var(--vp-text-dark);
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.vp-section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--vp-accent);
}

.vp-section-desc {
  color: var(--vp-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 5px;
}

.vp-product-card {
  display: block;
  background: var(--vp-bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  position: relative;
  text-decoration: none;
  border-bottom: 4px solid transparent;
}

.vp-product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--vp-shadow-lg);
  border-bottom: 4px solid var(--vp-accent);
}

.vp-product-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.vp-product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vp-product-card:hover .vp-product-img-box img {
  transform: scale(1.1);
}

/* Dark Premium Overlay on Hover */
.vp-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(77, 33, 30, 0.75);
  /* Dark Mahogany with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--vp-transition);
}

.vp-product-card:hover .vp-product-overlay {
  opacity: 1;
}

.vp-product-overlay span {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  backdrop-filter: blur(4px);
}

.vp-product-card:hover .vp-product-overlay span {
  transform: translateY(0);
}

.vp-product-overlay span i {
  transition: transform 0.3s ease;
}

.vp-product-card:hover .vp-product-overlay span:hover i {
  transform: translateX(5px);
}

.vp-product-info {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--vp-bg-white);
}

.vp-product-icon {
  color: var(--vp-accent);
  font-size: 1.6rem;
  transition: var(--vp-transition);
}

.vp-product-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--vp-text-dark);
  font-family: var(--vp-font-heading);
  transition: var(--vp-transition);
}

.vp-product-card:hover .vp-product-title {
  color: var(--vp-primary);
}

/* --- WHY CHOOSE US SECTION (ANIMATED BACKGROUND) --- */
.vp-why-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  /* Animated Gradient Background */
  background: linear-gradient(-45deg, #2b1110, #4d211e, #6a2e2a, #381512);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #ffffff;
  z-index: 1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Color Blobs for Extra Premium Feel */
.vp-why-blob-1,
.vp-why-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: -1;
  animation: floatBlob 10s infinite alternate ease-in-out;
}

.vp-why-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--vp-accent);
  top: -100px;
  left: -100px;
}

.vp-why-blob-2 {
  width: 500px;
  height: 500px;
  background: #a8482b;
  bottom: -150px;
  right: -100px;
  animation-delay: 2s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.vp-why-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.vp-why-badge {
  display: inline-block;
  border: 1px solid rgba(207, 108, 55, 0.6);
  color: var(--vp-accent);
  padding: 6px 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(207, 108, 55, 0.1);
  backdrop-filter: blur(5px);
}

.vp-why-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.vp-why-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Glassmorphism Cards */
.vp-why-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--vp-accent);
  border-radius: 6px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.vp-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: var(--vp-transition);
}

.vp-why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-left-color: #ffffff;
}

.vp-why-card:hover::before {
  opacity: 1;
}

.vp-why-icon {
  font-size: 2rem;
  color: var(--vp-accent);
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--vp-transition);
}

.vp-why-card:hover .vp-why-icon {
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.vp-why-card h4 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.vp-why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.vp-btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: var(--vp-transition);
  background: transparent;
}

.vp-btn-outline-light i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.vp-btn-outline-light:hover {
  background: var(--vp-accent);
  border-color: var(--vp-accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(207, 108, 55, 0.3);
}

.vp-btn-outline-light:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .vp-about-watermark {
    display: none;
  }

  .vp-about-section {
    padding: 80px 0;
  }

  .vp-about-title {
    font-size: 2.5rem;
  }

  .vp-experience-badge {
    left: 0;
    top: -20px;
    padding: 20px 25px;
  }

  .vp-experience-badge h3 {
    font-size: 2.5rem;
  }

  .vp-about-img-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .vp-about-float-img {
    width: 70%;
    height: 250px;
    border-width: 8px;
  }

  .vp-about-main-img {
    height: 400px;
  }

  .vp-feature-list {
    grid-template-columns: 1fr;
  }
}

/* --- GALLERY SECTION (BENTO BOX GRID) --- */
.vp-gallery-section {
  padding: 60px 0;
  background-color: var(--vp-bg-white);
}

.vp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.vp-gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--vp-shadow-sm);
}

/* Spanning utility classes for dynamic Premium Grid */
.vp-item-tall {
  grid-row: span 2;
}

.vp-item-wide {
  grid-column: span 2;
}

.vp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark Premium Overlay */
.vp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(77, 33, 30, 0.95) 0%,
    rgba(106, 46, 42, 0.4) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.vp-gallery-item:hover img {
  transform: scale(1.1);
}

.vp-gallery-item:hover .vp-gallery-overlay {
  opacity: 1;
}

.vp-gallery-overlay h5 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0 0 5px 0;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
}

.vp-gallery-overlay p {
  color: var(--vp-accent);
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.vp-gallery-item:hover .vp-gallery-overlay h5,
.vp-gallery-item:hover .vp-gallery-overlay p {
  transform: translateY(0);
}

/* Glassmorphism View Icon */
.vp-gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vp-gallery-item:hover .vp-gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 991px) {
  .vp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-item-wide {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .vp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .vp-item-tall {
    grid-row: span 1;
  }
}

/* --- LIGHTBOX MODAL (POPUP) --- */
.vp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.vp-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.vp-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vp-lightbox.active img {
  transform: scale(1);
}

.vp-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.vp-lightbox-close:hover {
  color: var(--vp-accent);
}

@media (max-width: 991px) {
  .vp-about-watermark {
    display: none;
  }

  .vp-about-section {
    padding: 80px 0;
  }

  .vp-about-title {
    font-size: 2.5rem;
  }

  .vp-experience-badge {
    left: 0;
    top: -20px;
    padding: 20px 25px;
  }

  .vp-experience-badge h3 {
    font-size: 2.5rem;
  }

  .vp-about-img-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .vp-about-float-img {
    width: 70%;
    height: 250px;
    border-width: 8px;
  }

  .vp-about-main-img {
    height: 400px;
  }

  .vp-feature-list {
    grid-template-columns: 1fr;
  }
}

/* --- TESTIMONIAL SECTION --- */
.vp-testimonial-section {
  padding: 60px 0;
  background-color: var(--vp-bg-soft);
  position: relative;
}

.vp-testi-card {
  background: var(--vp-bg-white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  position: relative;
  z-index: 1;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.vp-testi-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--vp-shadow-lg);
  border-bottom-color: var(--vp-accent);
}

/* Large Background Quote Icon */
.vp-testi-quote-bg {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: var(--vp-primary);
  opacity: 0.05;
  z-index: -1;
  line-height: 1;
  font-family: var(--vp-font-heading);
}

.vp-testi-stars {
  color: var(--vp-accent);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.vp-testi-text {
  font-size: 1.05rem;
  color: var(--vp-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.vp-testi-client {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.vp-testi-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vp-bg-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vp-testi-info h5 {
  margin: 0 0 4px 0;
  font-size: 1.2rem;
  color: var(--vp-text-dark);
}

.vp-testi-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--vp-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Testimonial Slider Additions */
.vp-testi-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.vp-testi-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.vp-testi-slide {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
}

/* --- CTA / PARALLAX SECTION --- */
.vp-cta-parallax {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/backgrounds/evelate-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
}

.vp-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(77, 33, 30, 0.676) 0%,
    rgba(20, 10, 10, 0.575) 100%
  );
  /* Dark Mahogany Overlay */
  z-index: 1;
}

.vp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vp-cta-title {
  font-size: 3.5rem;
  font-family: var(--vp-font-heading);
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vp-cta-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.vp-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.vp-btn-wa {
  background: #25d366;
  /* WhatsApp Green */
  color: #fff;
  padding: 16px 35px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #25d366;
  transition: var(--vp-transition);
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.vp-btn-wa i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.vp-btn-wa:hover {
  background: #fff;
  color: #25d366;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .vp-testi-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

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

  .vp-item-wide {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .vp-testi-slide {
    flex: 0 0 100%;
    min-width: 100%;
    gap: 0;
  }

  .vp-testi-track {
    gap: 0;
  }

  .vp-cta-title {
    font-size: 2.5rem;
  }

  .vp-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .vp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .vp-item-tall {
    grid-row: span 1;
  }
}

/* --- LIGHTBOX MODAL (POPUP) --- */
.vp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.vp-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.vp-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vp-lightbox.active img {
  transform: scale(1);
}

.vp-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.vp-lightbox-close:hover {
  color: var(--vp-accent);
}

@media (max-width: 991px) {
  .vp-about-watermark {
    display: none;
  }

  .vp-about-section {
    padding: 80px 0;
  }

  .vp-about-title {
    font-size: 2.5rem;
  }

  .vp-experience-badge {
    left: 0;
    top: -20px;
    padding: 20px 25px;
  }

  .vp-experience-badge h3 {
    font-size: 2.5rem;
  }

  .vp-about-img-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .vp-about-float-img {
    width: 70%;
    height: 250px;
    border-width: 8px;
  }

  .vp-about-main-img {
    height: 400px;
  }

  .vp-feature-list {
    grid-template-columns: 1fr;
  }
}

/* --- BLOG SECTION --- */
.vp-blog-section {
  padding: 60px 0;
  background-color: var(--vp-bg-light);
}

.vp-blog-card {
  background: var(--vp-bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vp-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--vp-shadow-lg);
}

.vp-blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.vp-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.vp-blog-card:hover .vp-blog-img-wrapper img {
  transform: scale(1.1);
}

.vp-blog-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--vp-accent);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 2;
}

.vp-blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vp-blog-meta {
  font-size: 0.85rem;
  color: var(--vp-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vp-blog-meta i {
  color: var(--vp-accent);
  margin-right: 5px;
}

.vp-blog-title {
  font-size: 1.4rem;
  color: var(--vp-text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.vp-blog-card:hover .vp-blog-title {
  color: var(--vp-primary);
}

.vp-blog-desc {
  color: var(--vp-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.vp-blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--vp-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.vp-blog-link i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.vp-blog-link:hover {
  color: var(--vp-accent);
}

.vp-blog-card:hover .vp-blog-link i {
  transform: translateX(5px);
}

/* --- BIG PREMIUM FOOTER --- */
.vp-footer {
  background: linear-gradient(135deg, #2b1110 0%, #1a0a09 100%);
  /* Deep rich luxury dark */
  color: #ffffff;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.vp-footer-watermark {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 15rem;
  font-family: var(--vp-font-heading);
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.vp-footer .container {
  position: relative;
  z-index: 1;
}

.vp-footer-logo {
  height: 100px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
  /* Makes logo white if it's dark */
}

.vp-footer-about {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.vp-footer-social {
  display: flex;
  gap: 15px;
}

.vp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--vp-transition);
}

.vp-footer-social a:hover {
  background: var(--vp-accent);
  border-color: var(--vp-accent);
  transform: translateY(-3px);
}

.vp-footer-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.vp-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--vp-accent);
}

.vp-footer-links li {
  margin-bottom: 15px;
}

.vp-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  display: inline-block;
  transition: var(--vp-transition);
}

.vp-footer-links a:hover {
  color: var(--vp-accent);
  transform: translateX(8px);
  /* Sliding effect */
}

.vp-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.vp-contact-info i {
  color: var(--vp-accent);
  font-size: 1.2rem;
  margin-top: 4px;
  margin-right: 15px;
}

.vp-contact-info a {
  color: rgba(255, 255, 255, 0.7);
}

.vp-contact-info a:hover {
  color: var(--vp-accent);
}

.vp-newsletter-form {
  position: relative;
  margin-top: 20px;
}

.vp-newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 20px;
  padding-right: 60px;
  border-radius: 4px;
  outline: none;
  transition: var(--vp-transition);
}

.vp-newsletter-input:focus {
  border-color: var(--vp-accent);
  background: rgba(255, 255, 255, 0.08);
}

.vp-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: var(--vp-accent);
  border: none;
  color: #fff;
  width: 45px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--vp-transition);
}

.vp-newsletter-btn:hover {
  background: #fff;
  color: var(--vp-accent);
}

.vp-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.vp-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.vp-footer-bottom a {
  color: var(--vp-accent);
}

@media (max-width: 991px) {
  .vp-about-watermark {
    display: none;
  }

  .vp-about-section {
    padding: 80px 0;
  }

  .vp-about-title {
    font-size: 2.5rem;
  }

  .vp-experience-badge {
    left: 0;
    top: -20px;
    padding: 20px 25px;
  }

  .vp-experience-badge h3 {
    font-size: 2.5rem;
  }

  .vp-about-img-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .vp-about-float-img {
    width: 70%;
    height: 250px;
    border-width: 8px;
  }

  .vp-about-main-img {
    height: 400px;
  }

  .vp-feature-list {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
           THE VINTAGE ADVANTAGE SECTION (Interactive Tabs)
           ==================================================== */
.vp-advantage-section {
  padding: 40px 0;
  background-color: var(--vp-bg-soft);
}

/* Top Header Intro */
.vp-adv-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.vp-adv-intro p {
  font-size: 1.2rem;
  color: var(--vp-text-dark);
  line-height: 1.8;
}

.vp-adv-intro p span {
  color: var(--vp-accent);
  font-weight: 900;
  font-size: 2.5rem;
}

.vp-adv-intro strong {
  color: var(--vp-accent);
}

/* Main Container for Tabs and Content */
.vp-adv-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* --- Left Side: Tabs Nav --- */
.vp-adv-tabs {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid rgba(0, 0, 0, 0.05);
  padding-left: 20px;
}

.vp-adv-tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--vp-font-body);
  color: var(--vp-text-muted);
  cursor: pointer;
  transition: var(--vp-transition);
  position: relative;
  border-radius: 4px;
}

.vp-adv-tab-btn::before {
  content: "";
  position: absolute;
  left: -22px; /* Position over the container's border */
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--vp-accent);
  transition: var(--vp-transition);
}

.vp-adv-tab-btn:hover {
  color: var(--vp-primary);
  background-color: rgba(0, 0, 0, 0.02);
}

.vp-adv-tab-btn.active {
  color: var(--vp-primary);
  background-color: var(--vp-bg-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vp-adv-tab-btn.active::before {
  height: 70%;
}

/* --- Right Side: Dynamic Content Area --- */
.vp-adv-content-area {
  flex-grow: 1;
  position: relative;
}

.vp-adv-pane {
  display: none; /* Hide by default */
  animation: fadeIn 0.6s ease forwards;
}

.vp-adv-pane.active {
  display: block; /* Show active */
}

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

/* Flex Layout inside Pane for stable overlapping (DESKTOP ONLY) */
.vp-pane-inner {
  display: flex;
  position: relative;
  align-items: center;
}

/* The Big Background Image */
.vp-pane-img-box {
  flex: 0 0 65%; /* Slightly reduced width for better overlap */
  margin-left: auto; /* Push to right */
  height: 450px; /* Controlled height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vp-pane-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The Floating White Content Card (Overlapping left side of image) */
.vp-pane-content-card {
  position: absolute;
  left: 0;
  width: 55%; /* Adjusted width */
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-top: 4px solid var(--vp-accent);
  z-index: 5;
}

.vp-pane-content-card h3 {
  font-size: 2rem;
  color: var(--vp-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.vp-pane-content-card > p {
  color: var(--vp-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vp-pane-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.vp-pane-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--vp-text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.vp-pane-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: var(--vp-accent);
  border-radius: 50%;
}

.vp-pane-btn {
  display: inline-block;
  background-color: var(--vp-accent);
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: var(--vp-transition);
  text-decoration: none;
}

.vp-pane-btn:hover {
  background-color: var(--vp-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(106, 46, 42, 0.2);
}

/* --- Responsive Design (THE FIX) --- */
@media (max-width: 1199px) {
  .vp-pane-content-card {
    width: 65%;
    padding: 30px;
  }
  .vp-pane-img-box {
    flex: 0 0 70%;
    height: 400px;
  }
}

@media (max-width: 991px) {
  /* Switch container to column */
  .vp-adv-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Tabs become horizontal scrollable */
  .vp-adv-tabs {
    width: 100%;
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 5px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }
  /* Hide scrollbar for tabs */
  .vp-adv-tabs::-webkit-scrollbar {
    display: none;
  }
  .vp-adv-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .vp-adv-tab-btn {
    padding: 12px 20px;
    border-radius: 4px 4px 0 0;
    font-size: 1rem;
  }
  .vp-adv-tab-btn::before {
    left: 0;
    top: auto;
    bottom: -7px;
    width: 0;
    height: 3px;
    transform: none;
  }
  .vp-adv-tab-btn.active::before {
    width: 100%;
    height: 3px;
  }

  /* --- CRITICAL FIX: Stacking Layout for Tablet & Mobile --- */
  .vp-adv-content-area {
    width: 100%;
  }

  .vp-pane-inner {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  /* Image takes full width */
  .vp-pane-img-box {
    flex: none;
    width: 100%;
    height: 350px;
    margin-left: 0;
    border-radius: 12px 12px 0 0; /* Only round top corners */
    box-shadow: none; /* Remove shadow to blend with card */
  }

  /* Content Card acts as normal block below image (NO ABSOLUTE) */
  .vp-pane-content-card {
    position: relative; /* Remove absolute positioning */
    width: 100%;
    left: auto;
    margin-top: 0; /* Remove negative margin overlap */
    padding: 30px;
    border-radius: 0 0 12px 12px; /* Round bottom corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Re-apply shadow */
    border-top: none; /* Remove top border */
    border-bottom: 4px solid var(--vp-accent); /* Move border to bottom */
  }

  /* Add a small visual overlap effect using a negative margin on the content card, but safely */
  .vp-pane-content-card {
    margin-top: -30px;
    border-radius: 12px;
    width: 90%;
    margin-left: 5%;
    border-top: 4px solid var(--vp-accent);
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .vp-advantage-section {
    padding: 60px 0;
  }
  .vp-adv-intro {
    margin-bottom: 40px;
  }
  .vp-adv-intro p {
    font-size: 1rem;
  }

  .vp-adv-tabs {
    gap: 0;
  }
  .vp-adv-tab-btn {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .vp-pane-img-box {
    height: 250px;
  }

  /* Mobile Card - Full width, no negative margin overlap */
  .vp-pane-content-card {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
    padding: 25px 20px;
  }
  .vp-pane-content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .vp-pane-content-card > p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .vp-pane-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

/* ===============================
   Floating Support Agent
================================= */

.vp-floating-agent {
  position: fixed;
  left: 20px;
  bottom: 10px;
  z-index: 99999;
  animation: floatAgent 3s ease-in-out infinite;
}

.vp-floating-agent a {
  display: block;
  text-decoration: none;
}

.vp-floating-agent img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: auto;
}

/* Floating Animation */
@keyframes floatAgent {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .vp-floating-agent img {
    width: 170px;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .vp-floating-agent img {
    width: 155px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .vp-floating-agent {
    left: 15px;
    bottom: 15px;
  }

  .vp-floating-agent img {
    width: 130px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .vp-floating-agent {
    left: 10px;
    bottom: 10px;
  }

  .vp-floating-agent img {
    width: 115px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .vp-floating-agent {
    left: 8px;
    bottom: 8px;
  }

  .vp-floating-agent img {
    width: 105px;
  }
}
