:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f8f5f0;
  --accent-color: #c0a062;
  --text-dark: #333;
  --text-light: #f8f5f0;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.custom-navbar {
  padding: 25px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.custom-navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(26, 26, 26, 0.98) !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.custom-navbar-brand {
  font-family: "Cormorant Garamond", serif;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 28px;
  color: #c0a062 !important;
  letter-spacing: 1.5px;
}

.custom-navbar-toggler {
  border: none;
}

.custom-navbar-collapse {
  justify-content: end;
}

.custom-nav-link {
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  color: #c0a062 !important;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-navbar.scrolled .custom-nav-link {
  color: #c0a062 !important;
}

.custom-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #c0a062;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}

.custom-nav-link:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/assets/image/herobg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  position: relative;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.btn-gold {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 0;
  transition: var(--transition);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid var(--accent-color);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 0;
  transition: var(--transition);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-outline-gold:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
  position: relative;
  margin-bottom: 70px;
  font-weight: 600;
}

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

.section-title:hover:after {
  width: 120px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}

/* New Media Gallery Section */
.media-gallery {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.media-player {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.media-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.media-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.media-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.media-thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.media-thumbnails::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.thumbnail-item {
  flex: 0 0 200px;
  height: 120px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: var(--transition);
}

.thumbnail-item img,
.thumbnail-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.thumbnail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.thumbnail-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: var(--transition);
}

.thumbnail-item:hover .play-icon {
  opacity: 1;
}

.media-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.about-img {
  position: relative;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

.service-card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  background-color: white;
  border-top: 3px solid var(--accent-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card .btn-link {
  margin-top: auto;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  width: auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.portfolio-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.9);
  opacity: 0;
  transition: var(--transition);
  padding: 40px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-overlay h4 {
  transform: translateY(20px);
  transition: var(--transition);
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.portfolio-overlay p {
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.1s;
  opacity: 0;
  color: var(--text-light);
  margin-bottom: 25px;
}

.portfolio-overlay .btn {
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.2s;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card {
  padding: 50px 40px;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: var(--transition);
  background-color: white;
  border-top: 3px solid var(--accent-color);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 4rem;
  color: rgba(192, 160, 98, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
  margin-right: 20px;
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact_form {
  border-radius: 0;
  padding: 15px;
  border: 1px solid #e0e0e0;
  margin-bottom: 25px;
  transition: var(--transition);
  font-size: 1rem;
  background-color: #f9f9f9;
}

.contact_form:focus {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-color);
  background-color: white;
}

textarea.contact_form{
  min-height: 180px;
}

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 100px 0 40px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--accent-color), transparent);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 25px;
  display: inline-block;
  letter-spacing: 1.5px;
}

.footer-about {
  margin-bottom: 30px;
  opacity: 0.7;
  font-weight: 300;
  line-height: 1.8;
}

.footer-links h5 {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 1px;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

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

.footer-links ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  opacity: 1;
  padding-left: 5px;
}

.newsletter {
  position: relative;
}

.newsletter p {
  opacity: 0.7;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.8;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding-right: 130px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.newsletter-form .btn-gold {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 10px 25px;
  font-size: 0.8rem;
}

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  margin-right: 10px;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

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

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
  font-weight: 300;
}
/* Team Section Styles */
.team-card {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  padding: 15px;
  transition: var(--transition);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  color: white;
  margin: 0 10px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.team-social a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

.team-info p {
  color: var(--accent-color);
  margin-bottom: 5px;
}

.team-info small {
  color: #777;
  font-size: 0.8rem;
}

/* Process Timeline Styles */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline:before {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.process-item {
  position: relative;
  margin-bottom: 50px;
}

.process-icon {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  background: var(--primary-color);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 1;
  border: 3px solid var(--accent-color);
}

.process-content {
  padding: 20px;
  position: relative;
  width: 45%;
}

.process-item:nth-child(odd) .process-content {
  left: 0;
  text-align: right;
}

.process-item:nth-child(even) .process-content {
  left: 55%;
}

.process-content h4 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.process-content p {
  color: #666;
}

/* Service Experience Styles */
.bg-custom-dark {
  background-color: var(--primary-color) !important;
}

.service-stats {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Package Styles */
.package-card {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.package-card.featured {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.package-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.package-header h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.package-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.package-price sup {
  font-size: 1.5rem;
  top: -1em;
}

.package-body {
  padding: 30px;
}

.package-body ul {
  list-style: none;
  padding: 0;
}

.package-body ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: flex-start;
}

.package-body ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  margin-top: 3px;
}

.package-footer {
  padding: 0 30px 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .process-timeline:before {
    left: 40px;
  }

  .process-icon {
    left: 40px;
  }

  .process-content {
    width: calc(100% - 90px);
    padding-left: 90px;
    text-align: left !important;
  }

  .process-item:nth-child(even) .process-content {
    left: 0;
  }

  .package-card.featured {
    transform: none;
  }
}
/* Animations */
.animate-up {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.animate-down {
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.animate-left {
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
}

.animate-right {
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}
/* Partners Section */
.partners-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partner-slider {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 16);
}

.partner-item {
  flex: 0 0 200px;
  height: 100px;
  padding: 0 30px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8)); /* Move by half the width */
  }
}

@media (max-width: 767px) {
  .partner-item {
    flex: 0 0 150px;
    padding: 0 20px;
  }

  .partner-item img {
    max-height: 50px;
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* Section Padding */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .media-player {
    height: 500px;
  }

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

@media (max-width: 991px) {
  .hero h1 {
    font-size: 4rem;
  }

  .custom-navbar .navbar-collapse {
    background-color: var(--primary-color);
    padding: 30px;
    margin-top: 15px;
    border-top: 1px solid var(--accent-color);
  }

  .footer-links {
    margin-bottom: 50px;
  }

  .media-player {
    height: 400px;
  }

  .thumbnail-item {
    flex: 0 0 150px;
    height: 90px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .about-img {
    height: 500px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 700px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .media-player {
    height: 350px;
  }

  .media-controls {
    bottom: 10px;
  }

  .media-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .thumbnail-item {
    flex: 0 0 120px;
    height: 80px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .section-title:after {
    bottom: -20px;
  }

  .section-padding {
    padding: 60px 0;
  }

  /* Reorder about section for mobile */
  .about-section .row {
    flex-direction: column-reverse;
  }

  .about-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .media-player {
    height: 250px;
  }

  .thumbnail-item {
    flex: 0 0 100px;
    height: 60px;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 12px 30px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .portfolio-img {
    height: 350px;
  }
}
