/********** Template CSS **********/
:root {
    --primary: #7c5c72;
    --light: #fafdfb;
    --dark: #5f5c7c;
}

.fw-medium {
    font-weight: 500 !important;
}
.money_for_gold_item_name {
  background-color: #7c5c72;
  color: #fff;
  padding: 4px 10px;
  font-size: 18px;
  display: inline;
  margin-bottom: 8px;
}
.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #000000;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header end ***/

.footer {
    position: relative;
    /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: '*';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #7c5c72;
    font-size: 32px;
    text-align: center;
}
header h2 {
    /* color: #7c5c72; */
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #7c5c72;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #7c5c72;
    color: #fff;
    padding: 8px 0;
    background: #7c5c72;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #7c5c72;
}
#declineBtn {
    background-color: #fff;
    color: #7c5c72;
}
#declineBtn:hover {
    background-color: #7c5c72;
    color: #fff;
}
/* Footer Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: white;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 21px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media (max-width: 578px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
  }

  .nav-links li {
      text-align: center;
      margin: 10px 0;
  }

  .burger {
      display: flex;
  }
  
  .nav-active {
      display: flex;
  }
}
hr {
  margin: 1rem 0;
 border: 1px solid #7c5c72;

}

@media (max-width: 768px) {
  .display-3 {
font-size: 34px;
  }
}

.main_title {
    font-size: 69px;
    text-align: center;
}
@media (max-width: 768px) {
    .main_title {
        font-size: 38px;
    }
}

/* new styles  */

:root {
  --background-color: #fafdfb;
  --accent-color: #7c5c72;
  --text-color: #474747;
  --light-accent: rgba(124, 92, 114, 0.1);
  --dark-bg-color: #413439;
  --light-text-color: #f5f5f5;
  --medium-accent: rgba(124, 92, 114, 0.2);
  --light-accent: rgba(124, 92, 114, 0.1);
  --alt-bg-color: #f7f8fc;
  --alt-accent-color: #6e5a69;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 968px) {
  .hero-section {
margin-top: 100px;
  }
}


.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.benefits-list {
  margin-bottom: 2.5rem;
}

.benefits-list .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.benefits-list .material-icons-outlined {
  color: var(--accent-color);
  margin-right: 1rem;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 92, 114, 0.2);
}

.btn-primary:hover {
  background-color: #6a4c61;
  border-color: #6a4c61;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 92, 114, 0.3);
}

.hero-image {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

.shape-decoration {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--light-accent);
  z-index: -1;
}

.shape-decoration-top {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--light-accent);
  z-index: -1;
}

@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.3rem;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.2rem;
  }
}
.about-section {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section h2 {
  color: var(--light-text-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.about-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.diagonal-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background-color: var(--background-color);
  transform: skewY(-3deg);
  transform-origin: bottom right;
  z-index: 1;
}

.light-dot {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.dot-1 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: -100px;
}

.dot-2 {
  width: 150px;
  height: 150px;
  bottom: 70px;
  right: 10%;
}

.dot-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 70px 0;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-image-container {
    margin-top: 3rem;
    text-align: center;
  }
}
.programs-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.program-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
  background-color: var(--light-accent);
  color: var(--accent-color);
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.program-card h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.program-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.program-card-body {
  padding: 2rem;
}

.circle-decoration {
  position: absolute;
  border-radius: 50%;
  background-color: var(--light-accent);
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -100px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  background-color: var(--medium-accent);
}

@media (max-width: 991.98px) {
  .programs-section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}
 /* Common Section Styles */
 .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pricing-section .section-title h2 {
  color: var(--light-text-color);
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--light-text-color);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-text-color);
}

.pricing-body {
  padding: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.5;
}

.pricing-features .material-icons {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.pricing-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-img {
  border-radius: 10px;
  transition: transform 0.3s ease;
 height: 200px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-img-container {
  overflow: hidden;
  padding: 0 20px;
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  opacity: 0.8;
}

.light-dot {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pricing-dot-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
}

.pricing-dot-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 5%;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--background-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title h2 {
  color: var(--accent-color);
}

.testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--accent-color);
}

.testimonial-location {
  color: #777;
  font-size: 0.9rem;
}

.circle-decoration {
  position: absolute;
  border-radius: 50%;
  background-color: var(--light-accent);
  z-index: 0;
}

.testimonial-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -150px;
}

.testimonial-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -100px;
}

.testimonial-circle-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 15%;
  background-color: var(--medium-accent);
}

/* Benefits Section */
.benefits-section {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section .section-title h2 {
  color: var(--light-text-color);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.benefit-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text-color);
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.benefit-icon .material-icons {
  font-size: 2rem;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.benefit-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light-text-color);
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.benefits-image {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.benefits-dot-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: -100px;
}

.benefits-dot-2 {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: 20%;
}

@media (max-width: 991.98px) {
  .pricing-section, .testimonials-section, .benefits-section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .pricing-card, .testimonial-card {
    margin-bottom: 30px;
  }
  
  .benefits-image-container {
    margin-top: 50px;
    text-align: center;
  }
}
/* Tracking Section */
.tracking-section {
  background-color: var(--alt-bg-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.tracking-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracking-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--alt-accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.8rem;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

.tracking-image {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  max-height: 800px;
  object-fit: cover;
}

.img-container:hover .tracking-image {
  transform: scale(1.03);
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.img-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--alt-accent-color));
  opacity: 0.1;
  z-index: 0;
}

.img-decoration-1 {
  top: -75px;
  right: -75px;
}

.img-decoration-2 {
  bottom: -75px;
  left: -75px;
}

/* Journey Section */
.journey-section {
  background-color: var(--alt-bg-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, var(--light-accent), transparent 400px);
  z-index: 0;
}

.journey-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), var(--alt-accent-color));
  border-radius: 5px 0 0 5px;
}

.journey-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.journey-card h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-left: 15px;
}

.journey-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  padding-left: 15px;
}

.journey-image {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  max-height: 700px;
  object-fit: cover;
}

.pattern-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--light-accent);
  opacity: 0.5;
  border-radius: 40px;
  transform: rotate(45deg);
  z-index: 0;
}

.pattern-1 {
  top: -150px;
  right: 20%;
}

.pattern-2 {
  bottom: -150px;
  left: 10%;
}

.gradient-divider {
  height: 3px;
  background: linear-gradient(to right, var(--accent-color), transparent);
  margin: 80px 0;
  border-radius: 3px;
}

@media (max-width: 991.98px) {
  .tracking-section, .journey-section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .tracking-feature, .journey-card {
    margin-bottom: 20px;
  }
  
  .img-container {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

 /* Contact Section */
 .contact-section {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-title {
  color: var(--light-text-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}



.contact-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-email {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light-text-color);
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  vertical-align: middle;
}

.light-dot {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-dot-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
}

.contact-dot-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 5%;
}

/* Form Section */
.form-section {
  background-color: var(--background-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 90%, var(--light-accent), transparent 400px);
  z-index: 0;
}

.form-container {
  background-color: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.form-title {
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.form-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  height: calc(3.5rem + 2px);
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(124, 92, 114, 0.25);
}

.form-floating label {
  padding: 1rem 1.25rem;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 92, 114, 0.3);
}

.btn-primary:hover {
  background-color: #6a4c61;
  border-color: #6a4c61;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 92, 114, 0.4);
}

.form-decoration {
  position: absolute;
  z-index: 0;
}

.deco-square {
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 15px;
  transform: rotate(45deg);
}

.deco-square-1 {
  top: -50px;
  right: 10%;
}

.deco-square-2 {
  bottom: -50px;
  left: 10%;
}

.deco-circle {
  border-radius: 50%;
  background-color: var(--medium-accent);
}

.deco-circle-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: -75px;
}

.deco-circle-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: -60px;
}

@media (max-width: 991.98px) {
  .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .contact-title, .form-title {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact-email {
    font-size: 1.1rem;
    display: block;
    margin-top: 1.5rem;
  }
}