/* LOADER */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader {
  text-align: center;
}

.loader-logo {
  margin-bottom: 20px;
}

.loader-logo img {
  width: 80px;
  height: 80px;
  animation: fade 2s ease-in-out infinite;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ddbc93, #c4a57d);
  animation: progress 2s ease-in-out forwards;
}

.loading-text {
  margin-top: 15px;
  color: #ddbc93;
  font-size: 14px;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s steps(5, end) infinite;
}

@keyframes fade {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes dots {

  0%,
  20% {
    content: ".";
  }

  40% {
    content: "..";
  }

  60% {
    content: "...";
  }

  80% {
    content: "....";
  }

  100% {
    content: ".....";
  }
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  /* Headings */
}

body p {
  font-family: "Inter", sans-serif;
  /* Body text */
}

/* Mouse Follow Animation Styles */
.mouse-follow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.mouse-follow-circle {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(221, 188, 147, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}

.mouse-follow-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #ddbc93;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-out;
}

/* Interactive States */
.hero-section a:hover~.mouse-follow-container .mouse-follow-circle {
  width: 60px;
  height: 60px;
  border-color: rgba(221, 188, 147, 0.6);
}

.hero-section a:hover~.mouse-follow-container .mouse-follow-dot {
  width: 12px;
  height: 12px;
}

/* Transparent/Overlay Navigation with Transformation */

/* Header and Navbar Base Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar {
  padding: 0;
  transition: all 0.4s ease;
}

/* Logo Styles */
.navbar-brand {
  position: relative;
}

.logo-default,
.logo-scrolled {
  transition: all 0.4s ease;
}

.logo-default {
  opacity: 1;
}

.logo-scrolled {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

/* Navigation Links */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #DDBC93;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #DDBC93;
  transition: width 0.3s ease;
}

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

.navbar .nav-link.active {
  color: #DDBC93;
  font-weight: 600;
}

/* CTA Button */
.btn-nav-cta {
  background: rgba(136, 96, 45, 0.2);
  color: #fff;
  border: 2px solid #DDBC93;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-nav-cta:hover {
  background: #88602D;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Scrolled State */
.navbar-scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .logo-default {
  opacity: 0;
}

.navbar-scrolled .logo-scrolled {
  opacity: 1;
}

.navbar-scrolled .nav-link {
  color: rgba(0, 0, 0, 0.8) !important;
}

.navbar-scrolled .btn-nav-cta {
  background: linear-gradient(90deg, #88602D 0%, #DDBC93 100%);
  border-color: transparent;
}

/* Mobile Navigation */
.offcanvas {
  background: #002233;
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-item:last-child .nav-link {
  border-bottom: none;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #88602D 0%, #DDBC93 100%);
  transition: width 0.1s ease;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .logo-default {
    opacity: 0;
  }

  .logo-scrolled {
    opacity: 1;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .offcanvas-body {
    padding-top: 1rem;
  }

  .btn-nav-cta {
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* BACK TO TOP ARROW  */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

/* FOOTER SECTION */
.footer-modern {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
}

.waves path {
  fill: rgba(221, 188, 147, 0.1);
  animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

.footer-content {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #ddbc93;
  transform: translateY(-3px);
}

.footer-title {
  color: #ddbc93;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ddbc93;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  width: 30px;
  height: 30px;
  background: rgba(221, 188, 147, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ddbc93;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ddbc93;
}

@keyframes wave {
  0% {
    d: path("M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
      );
  }

  50% {
    d: path("M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,144C960,128,1056,128,1152,138.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
      );
  }

  100% {
    d: path("M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
      );
  }
}

@media (max-width: 768px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .copyright {
    text-align: center;
  }

  .footer-content {
    padding: 60px 0 30px;
  }
}

/* Advanced Footer Animations */
.footer-modern {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  perspective: 1000px;
}

/* Floating Elements Animation */
.footer-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Glowing Border Effect */
.footer-glow {
  position: relative;
  overflow: hidden;
}

.footer-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ddbc93, transparent, #ddbc93);
  animation: borderGlow 3s linear infinite;
  z-index: -1;
}

@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Ripple Effect on Social Icons */
.social-link {
  position: relative;
  overflow: hidden;
}

.social-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 1s linear infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* 3D Tilt Effect on Cards */
.footer-card {
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.footer-card:hover {
  transform: rotateX(10deg) rotateY(10deg);
}

/* Magnetic Button Effect */
.magnetic-button {
  position: relative;
  transition: transform 0.3s ease;
}

.magnetic-button:hover {
  transform: translate(var(--x, 0), var(--y, 0));
}

/* Text Gradient Animation */
.gradient-text {
  background: linear-gradient(90deg, #ddbc93, #fff, #ddbc93);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s linear infinite;
}

@keyframes textGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Particle Effect */
.particle {
  position: absolute;
  pointer-events: none;
  animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* FREQUENTLY ASKED QUESTIONS (FAQ) SECTION */
.faq-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.faq-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.faq-wrapper {
  position: relative;
  z-index: 1;
}

.faq-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
  position: relative;
  padding: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}

.question-icon,
.answer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.question-icon {
  background: linear-gradient(135deg, #ddbc93, #c4a57d);
  color: white;
}

.answer-icon {
  background: #f0f0f0;
  color: #ddbc93;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  flex: 1;
}

.toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.toggle-icon span {
  position: absolute;
  background: #ddbc93;
  transition: all 0.3s ease;
}

.line-1 {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.line-2 {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-card.active .line-2 {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 25px 25px;
  display: flex;
  gap: 20px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card.active .faq-answer {
  opacity: 1;
  height: auto;
}

/* Particle Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

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

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .question-icon,
  .answer-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}