/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Satisfy:wght@400&family=Phudu:wght@300;400;500&display=swap');

/* CSS Variables */
:root {
  --primary-color: #dfba9f;
  --secondary-color: #2c2c2c;
  --accent-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #faf8f5;
  --font-main: 'Work Sans', sans-serif;
  --font-script: 'Satisfy', cursive;
  --font-display: 'Phudu', cursive;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Typography */
.section-title {
  font-family: var(--font-script);
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Header Styles */
.navbar {
  background-color: var(--secondary-color) !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Existing button styling */
.btn-booking {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-booking:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Mobile layout (below 768px) */
@media screen and (max-width: 768px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: stretch; /* Ensures items stretch to full width */
    padding: 0;
    width: 100%;
  }
  .navbar-nav {
    width: 100%;
  }
  .nav-item {
    width: 100%;
    text-align: left;
    margin-bottom: 5px; /* Space between menu items */
  }
  .nav-link {
    padding: 10px;
    display: block; /* Ensure full width */
    color: #fff; /* Match the image's text color */
    border-bottom: 1px solid #d4a373; /* Match the underline style from the image */
  }
  .nav-link.active {
    border-bottom-color: #d4a373; /* Highlight active item */
  }
  .btn-booking {
    margin-top: 10px;
    width: 22%;
    text-align: left;
    display: block;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
  }
}

/* Smaller Mobile (below 480px) */
@media screen and (max-width: 480px) {
  .btn-booking {
    padding: 6px 15px;
    font-size: 14px;
  }
  .nav-link {
    font-size: 14px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.swiper-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.swiper-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 300;
}

.swiper-title {
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 400;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-social {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Portfolio Section */
.portfolio-section {
  background: #fff;
}

.portfolio-item {
  position: relative;
  overflow: visible;
  /* border-radius: 15px; */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
  background: #fff;
}

.portfolio-item:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: visible;
  /* border-radius: 15px; */
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  /* border-radius: 15px; */
  display: block;
  transition: filter 0.2s, transform 0.2s;
}

/* Animated border divs */
.portfolio-item .img-border-top,
.portfolio-item .img-border-bottom,
.portfolio-item .img-border-left,
.portfolio-item .img-border-right {
  position: absolute;
  background: #fff;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.77, 0, .18, 1), transform 0.45s cubic-bezier(.77, 0, .18, 1);
}

.portfolio-item .img-border-top,
.portfolio-item .img-border-bottom {
  left: 8px;
  width: calc(100% - 16px);
  height: 2px;
  transform: scaleX(0);
}

.portfolio-item .img-border-top {
  top: 8px;
  transform-origin: left;
}

.portfolio-item .img-border-bottom {
  bottom: 8px;
  transform-origin: right;
}

.portfolio-item .img-border-left,
.portfolio-item .img-border-right {
  top: 8px;
  height: calc(100% - 16px);
  width: 2px;
  transform: scaleY(0);
}

.portfolio-item .img-border-left {
  left: 8px;
  transform-origin: top;
}

.portfolio-item .img-border-right {
  right: 8px;
  transform-origin: bottom;
}

.portfolio-item:hover .img-border-top,
.portfolio-item:focus-within .img-border-top {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.05s;
}

.portfolio-item:hover .img-border-right,
.portfolio-item:focus-within .img-border-right {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.12s;
}

.portfolio-item:hover .img-border-bottom,
.portfolio-item:focus-within .img-border-bottom {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.18s;
}

.portfolio-item:hover .img-border-left,
.portfolio-item:focus-within .img-border-left {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.25s;
}

/* Animated border divs for service images */
.service-image .img-border-top,
.service-image .img-border-bottom,
.service-image .img-border-left,
.service-image .img-border-right {
  position: absolute;
  background: #fff;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.77, 0, .18, 1), transform 0.45s cubic-bezier(.77, 0, .18, 1);
}

.service-image .img-border-top,
.service-image .img-border-bottom {
  left: 8px;
  width: calc(100% - 16px);
  height: 2px;
  transform: scaleX(0);
}

.service-image .img-border-top {
  top: 8px;
  transform-origin: left;
}

.service-image .img-border-bottom {
  bottom: 8px;
  transform-origin: right;
}

.service-image .img-border-left,
.service-image .img-border-right {
  top: 8px;
  height: calc(100% - 16px);
  width: 2px;
  transform: scaleY(0);
}

.service-image .img-border-left {
  left: 8px;
  transform-origin: top;
}

.service-image .img-border-right {
  right: 8px;
  transform-origin: bottom;
}

.service-item:hover .img-border-top,
.service-item:focus-within .img-border-top {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.05s;
}

.service-item:hover .img-border-right,
.service-item:focus-within .img-border-right {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.12s;
}

.service-item:hover .img-border-bottom,
.service-item:focus-within .img-border-bottom {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.18s;
}

.service-item:hover .img-border-left,
.service-item:focus-within .img-border-left {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.25s;
}

/* Overlay icon center for both portfolio and service images */
.portfolio-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(44, 44, 44, 0.55);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  font-size: 1.6rem;
  color: #fff;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay,
.service-item:hover .portfolio-overlay,
.service-item:focus-within .portfolio-overlay {
  opacity: 1;
  pointer-events: auto;
  background: rgba(44, 44, 44, 0.85);
}

/* Services Section */
.services-section {
  background: #fff;
}

.service-content {
  padding-right: 30px;
}

.service-subtitle {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.serviceSwiper .swiper-slide {
  height: auto;
}

.service-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.service-item a {
  text-decoration: none;
  color: inherit;
}

/* About Section */
.about-section {
  background: var(--bg-light);
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding-left: 30px;
}

.about-title {
  font-family: var(--font-script);
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-description p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

.decorative-image {
  text-align: center;
  margin-top: 2rem;
}

.decorative-image img {
  max-width: 150px;
  opacity: 0.8;
}

/* Quote Section */
.quote-section {
  background: #fff;
  position: relative;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 30px;
  background: rgba(223, 186, 159, 0.1);
  border-radius: 20px;
  border: 2px dashed var(--primary-color);
}

.quote-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.quote-decoration img {
  max-height: 80px;
  opacity: 0.8;
}

/* Price Section */
.price-section {
  background: #fff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
}

.price-content {
  flex: 2;
  padding: 20px;
  background: #fff;
  border-right: 1px dashed #f4a261;
  position: relative;
}

.choose-our-services .our-services .title h3 {
  width: 350px !important;
  height: 58px !important;
  font-family: 'Satisfy', cursive, sans-serif !important;
  /* Thêm fallback font */
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 48px !important;
  line-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  color: #141414 !important;
  border: 1px solid #000000 !important;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  flex: none !important;
  order: 0 !important;
  flex-grow: 0 !important;
  margin-bottom: 16px !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden;
  /* Ngăn text tràn ra ngoài nếu quá dài */
  white-space: nowrap;
  /* Ngăn ngắt dòng */
}

.title-satisfy {
  font-family: 'Satisfy', cursive, sans-serif !important;
  font-size: 48px;
  line-height: 58px;
  text-align: left;
  color: #141414;
  margin: 0 auto 16px;
  width: 100%;
  padding: 0 16px;
}

/* Tablet (768px trở xuống) */
@media screen and (max-width: 768px) {
  .title-satisfy {
    font-size: 36px;
    line-height: 44px;
  }
}

/* Mobile (480px trở xuống) */
@media screen and (max-width: 480px) {
  .title-satisfy {
    font-size: 28px;
    line-height: 36px;
  }
}

.price-description {
  font-size: 14px;
  line-height: 1.6em;
  font-family: var(--font-main), sans-serif;
  color: #f4a261;
  margin: 0 0 20px;
  text-align: left;
  font-weight: 600;
}

.price-description a {
  color: #f4a261;
  text-decoration: none;
  font-weight: 600;
}

.pricing-list {
  max-height: 330px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  padding-right: 10px;
}

.pricing-list::-webkit-scrollbar {
  width: 8px;
}

.pricing-list::-webkit-scrollbar-track {
  background: #f4a261;
  border-radius: 4px;
}

.pricing-list::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
}

.pricing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #f4a261;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li span {
  font-family: var(--font-main);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
  text-decoration: none;
}

.pricing-list h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #b57f50;
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 0.5rem;
  text-align: left; /* ✅ Căn trái luôn */
}

.pricing-list .service-item {
  padding: 10px 0;
  border-bottom: 1px dashed #f4a261;
}

.pricing-list .service-item:last-child {
  border-bottom: none;
}

.pricing-list .service-item h4 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

.pricing-list .service-item p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-top: 6px;
  text-align: left;
}

.pricing-list .price {
  color: #000;
  font-weight: bold;
  margin-left: 10px;
  white-space: nowrap;
}

.pricing-list .addon {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--text-dark);
  text-align: left;
}

@media (max-width: 600px) {
  .pricing-list {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0;
  }
  .pricing-list h3,
  .pricing-list .service-item h4,
  .pricing-list .service-item p,
  .pricing-list .addon {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .pricing-list .service-item h4 {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-list .price {
    margin: 4px 0 0;
  }

  .pricing-list .addon {
    flex-direction: column;
    align-items: flex-start;
  }
}

.price-value {
  font-family: var(--font-main);
  font-size: 18px;
  color: #f4a261;
  margin-bottom: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}

.price-image {
  flex: 1;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.price-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.price-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(45deg, #d4a373, #f4a261);
  border-radius: 15px;
  z-index: 0;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.5),
    0 0 10px rgba(255, 215, 0, 0.3);
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 767.98px) {

  /* Mobile */
  .price-container {
    flex-direction: column;
    width: 100%;
  }

  .price-content {
    flex: 1;
    border-right: none;
    border-bottom: 1px dashed #f4a261;
  }

  .pricing-list {
    max-height: 200px;
  }

  .choose-our-services .our-services .title h3 {
    font-family: 'Satisfy', cursive, sans-serif !important;
    width: 250px !important;
    height: 48px !important;
    font-size: 36px !important;
    line-height: 48px !important;
    margin-bottom: 12px !important;
  }

  .price-description {
    font-size: 12px;
  }

  .pricing-list li span,
  .price-value {
    font-size: 16px;
  }

  .price-image::before {
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.4),
      0 0 5px rgba(255, 215, 0, 0.2);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* Tablet */
  .price-container {
    width: 90%;
  }

  .pricing-list {
    max-height: 280px;
  }

  .choose-our-services .our-services .title h3 {
    font-family: 'Satisfy', cursive, sans-serif !important;
    width: 300px !important;
    height: 53px !important;
    font-size: 42px !important;
    line-height: 53px !important;
    margin-bottom: 14px !important;
  }

  .price-description {
    font-size: 13px;
  }

  .pricing-list li span,
  .price-value {
    font-size: 17px;
  }

  .price-image::before {
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(212, 163, 115, 0.45),
      0 0 7px rgba(255, 215, 0, 0.25);
  }
}

@media (min-width: 992px) {

  /* Desktop */
  .price-container {
    width: 100%;
  }

  .pricing-list {
    max-height: 430px;
  }

  .choose-our-services .our-services .title h3 {
    font-family: 'Satisfy', cursive, sans-serif !important;
    width: 350px !important;
    height: 58px !important;
    font-size: 48px !important;
    line-height: 58px !important;
    margin-bottom: 16px !important;
  }

  .price-description {
    font-size: 14px;
  }

  .pricing-list li span,
  .price-value {
    font-size: 18px;
  }

  .price-image::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.5),
      0 0 10px rgba(255, 215, 0, 0.3);
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #fff;
}

.testimonialsSwiper {
  padding: 20px 0 50px;
}

.testimonial-item {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Footer Styles */
.footer-wrapper {
  background-color: var(--secondary-color);
  color: #fff;
  position: relative;
}

.subscribe-wrapper {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  text-align: center;
}

.subscribe-form h4 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.social-icon-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-item:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-content {
  padding: 80px 0 40px;
}

.footer-widget-area {
  margin-bottom: 40px;
}

.footer-widget-area .logo img {
  max-height: 80px;
  margin-bottom: 20px;
}

.widget-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.widget-title h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.foh-wrap {
  display: table;
  width: 100%;
}

.foh-row {
  display: table-row;
}

.foh-date,
.foh-time {
  display: table-cell;
  padding: 8px 0;
  color: #ccc;
}

.foh-date {
  font-weight: 600;
  width: 40%;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: 600;
}

/* Animation Classes */
.wow {
  visibility: hidden;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 2.5rem;
  }

  .swiper-title {
    font-size: 3rem;
  }

  .price-subtitle {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .swiper-title {
    font-size: 2.5rem;
  }

  .swiper-subtitle {
    font-size: 1.5rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .service-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-social {
    right: 15px;
    bottom: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }

  .swiper-title {
    font-size: 2rem;
  }

  .swiper-subtitle {
    font-size: 1.2rem;
  }

  .price-subtitle {
    font-size: 2.5rem;
  }

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .portfolio-image img {
    height: 200px;
  }

  .video-item iframe {
    height: 200px;
  }

  .service-image img {
    height: 150px;
  }

  .quote-content {
    padding: 30px 20px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .testimonial-item {
    padding: 30px 20px;
  }

  .back-to-top {
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .swiper-content {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .swiper-title {
    font-size: 1.8rem;
  }

  .price-subtitle {
    font-size: 2rem;
  }

  .portfolio-image img,
  .video-item iframe,
  .service-image img {
    height: 180px;
  }

  .footer-content {
    padding: 60px 0 30px;
  }

  .subscribe-wrapper {
    padding: 40px 0;
  }

  .social-icon-items {
    gap: 15px;
  }

  .social-icon-item {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.video-item video {
  opacity: 1 !important;
  background-color: #000 !important;
  height: 250px !important;
  width: 100% !important;
  object-fit: cover;
  text-align: center;
}

.video-responsive {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
  object-fit: contain; /* Thay vì cover */
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c9a480;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* Print Styles */
@media print {

  .navbar,
  .hero-social,
  .back-to-top,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .section-title,
  .price-value,
  .testimonial-author {
    color: #000 !important;
  }
}




/* ---------------------------------------------------------------- */



/* About Page Specific Styles */
:root {
  --font-main: 'Work Sans', sans-serif;
  --font-script: 'Satisfy', cursive;
  --font-display: 'Phudu', cursive;
  --primary-color: #dfba9f;
  --secondary-color: #2c2c2c;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #faf8f5;
}

/* Header Styles */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-layout .navbar {
  background-color: var(--secondary-color);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.mobile-layout .navbar {
  height: 180px;
}

.desktop-layout .navbar {
  height: 210px;
}

.navbar-logo img {
  max-height: 165px;
  transition: all 0.3s ease;
}

.desktop-layout .navbar-logo img {
  max-height: 195px;
}

.navbar-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.navbar-desktop .menu-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.navbar-desktop .menu-item a:hover,
.navbar-desktop .menu-item-active a {
  color: var(--primary-color);
}

/* Mobile Menu */
.navbar-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--secondary-color);
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 20px;
}

.navbar-mobile.active {
  right: 0;
}

.navbar-mobile ul {
  list-style: none;
  padding: 0;
  margin: 50px 0 0 0;
}

.navbar-mobile .menu-item {
  margin-bottom: 15px;
}

.navbar-mobile .menu-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  display: block;
}

.navbar-mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar-hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-bar {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Breadcrumb Section */
.breadcrumb-wrapper {
  padding-top: 180px;
  padding-bottom: 100px;
  background: var(--bg-light);
  text-align: center;
}

@media (min-width: 1200px) {
  .breadcrumb-wrapper {
    padding-top: 210px;
  }
}

.breadcrumb-title {
  font-family: var(--font-script);
  font-size: 4rem;
  color: var(--primary-color);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Content */
.page-introduce {
  padding: 100px 0;
  background: #fff;
}

.section-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-content {
  padding-left: 40px;
  position: relative;
}

.section-subtitle h5 {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-subtitle h4 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 600;
}

.section-desc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.section-desc a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.section-desc a:hover {
  text-decoration: underline;
}

.section-action {
  margin-top: 25px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #c9a480;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.single-image {
  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 2;
}

.single-image img {
  max-width: 120px;
  opacity: 0.8;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Quote Section */
.page-introduce2 {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.page-introduce2::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(223, 186, 159, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-introduce2::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(223, 186, 159, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-introduce2 .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px dashed var(--primary-color);
  position: relative;
}

.heading-sep {
  width: 100px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 30px;
}

.custom-text p {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

.custom-text p::before,
.custom-text p::after {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  opacity: 0.5;
}

.custom-text p::before {
  content: '"';
  top: -10px;
  left: -20px;
}

.custom-text p::after {
  content: '"';
  bottom: -30px;
  right: -20px;
}

.custom-img img {
  max-height: 80px;
  opacity: 0.8;
}

/* Footer Styles */
.footer-wrapper {
  background-color: var(--secondary-color);
  color: #fff;
}

.subscribe-wrapper {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  text-align: center;
}

.subscribe-form h4 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.social-icon-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item img {
  transition: transform 0.3s ease;
}

.social-icon-item:hover img {
  transform: scale(1.1);
}

.footer-wrapper .footer-widget-area {
  padding: 40px 0;
}

.footer-widget-area .logo img {
  max-height: 80px;
  margin-bottom: 20px;
}

.widget-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.widget-title h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-info .icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-info .icon::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.icon-placeholder::before {
  content: '\f3c5';
}

.icon-phone-call::before {
  content: '\f095';
}

.icon-mail::before {
  content: '\f0e0';
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.foh-wrap {
  display: table;
  width: 100%;
}

.foh-row {
  display: table-row;
}

.foh-date,
.foh-time {
  display: table-cell;
  padding: 8px 0;
  color: #ccc;
}

.foh-date {
  font-weight: 600;
  width: 40%;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ================== FLOATING BUTTONS ================== */
/* Floating Action Buttons */
.freeze-footer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.freeze-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn_call_now,
.btn_make_appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  background: gray;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn_call_now {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn_make_appointment {
  background: linear-gradient(135deg, #d9a679, #c9a480);
}

/* Icon styling with animation */
.btn_call_now img,
.btn_make_appointment img {
  width: 28px;
  height: 28px;
  animation: bounce 2s infinite ease-in-out;
}

/* Hover effect */
.btn_call_now:hover,
.btn_make_appointment:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn_call_now:hover img,
.btn_make_appointment:hover img {
  animation: pulse 0.6s ease;
}

/* Responsive */
@media (max-width: 480px) {
  .freeze-footer {
    bottom: 20px;
    right: 20px;
  }

  .btn_call_now,
  .btn_make_appointment {
    width: 70px;
    height: 70px;
  }

  .btn_call_now img,
  .btn_make_appointment img {
    width: 25px;
    height: 25px;
  }
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pulse animation for hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Animation Classes */
.wow {
  visibility: hidden;
}

.animate__slideInLeft {
  animation-name: slideInLeft;
}

.animate__slideInRight {
  animation-name: slideInRight;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .breadcrumb-title {
    font-size: 3rem;
  }

  .section-content {
    padding-left: 20px;
  }

  .single-image {
    right: -15px;
  }

  .single-image img {
    max-width: 100px;
  }
}

@media (max-width: 991.98px) {
  .breadcrumb-wrapper {
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .page-introduce {
    padding: 80px 0;
  }

  .section-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .single-image {
    position: static;
    text-align: right;
    margin-bottom: 20px;
  }

  .section-subtitle h4 {
    font-size: 2rem;
  }

  .section-title h3 {
    font-size: 1.5rem;
  }

  .page-introduce2 .inner {
    padding: 40px 30px;
  }

  .custom-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .mobile-layout .navbar {
    height: 120px;
  }

  .navbar-logo img {
    max-height: 105px;
  }

  .breadcrumb-wrapper {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .breadcrumb-title {
    font-size: 2.5rem;
  }

  .section-subtitle h4 {
    font-size: 1.8rem;
  }

  .section-title h3 {
    font-size: 1.3rem;
  }

  .section-desc p {
    font-size: 0.95rem;
  }

  .page-introduce2 .inner {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .custom-text p {
    font-size: 1.1rem;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .footer-wrapper .footer-widget-area {
    padding: 30px 0;
  }
}

@media (max-width: 575.98px) {
  .breadcrumb-title {
    font-size: 2rem;
  }

  .section-subtitle h4 {
    font-size: 1.5rem;
  }

  .section-title h3 {
    font-size: 1.2rem;
  }

  .section-desc p {
    font-size: 0.9rem;
  }

  .custom-text p {
    font-size: 1rem;
  }

  .custom-text p::before,
  .custom-text p::after {
    display: none;
  }

  .page-introduce2 .inner {
    padding: 25px 15px;
  }

  .social-icon-items {
    gap: 15px;
  }

  .social-icon-item img {
    width: 35px;
    height: 35px;
  }

  .subscribe-form h4 {
    font-size: 2rem;
  }
}

/* Additional Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* Button Ripple Effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Glint Effect */
.btn-glint {
  position: relative;
  overflow: hidden;
}

.btn-glint::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-glint:hover::before {
  left: 100%;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c9a480;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {

  .header-wrapper,
  .back-to-top,
  .navbar-mobile {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .breadcrumb-title,
  .section-subtitle h4,
  .custom-text p {
    color: #000 !important;
  }

  .breadcrumb-wrapper {
    padding-top: 0 !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #8B4513;
    --text-light: #000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

/* Header Shrink Animation */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Default Header Sizes */
.mobile-layout .navbar {
  height: 180px;
  transition: height 0.3s ease, padding 0.3s ease;
}

.desktop-layout .navbar {
  height: 210px;
  transition: height 0.3s ease, padding 0.3s ease;
}

.navbar-logo img {
  max-height: 165px;
  transition: all 0.3s ease;
}

.desktop-layout .navbar-logo img {
  max-height: 195px;
  transition: all 0.3s ease;
}

/* Shrunk Header Sizes */
.header-wrapper.shrunk .mobile-layout .navbar {
  height: 80px;
  padding: 10px 0;
  background-color: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-wrapper.shrunk .desktop-layout .navbar {
  height: 90px;
  padding: 10px 0;
  background-color: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-wrapper.shrunk .mobile-layout .navbar-logo img {
  max-height: 60px;
}

.header-wrapper.shrunk .desktop-layout .navbar-logo img {
  max-height: 70px;
}

/* Adjust breadcrumb padding based on header state */
.breadcrumb-wrapper {
  padding-top: 180px;
  transition: padding-top 0.3s ease;
}

@media (min-width: 1200px) {
  .breadcrumb-wrapper {
    padding-top: 210px;
  }
}

/* Navbar items alignment in shrunk state */
.header-wrapper.shrunk .navbar-desktop ul {
  align-items: center;
}

.header-wrapper.shrunk .navbar-desktop .menu-item a {
  padding: 5px 0;
  font-size: 0.9rem;
}

/* Mobile menu adjustments for shrunk state */
.header-wrapper.shrunk .navbar-hamburger {
  transform: scale(0.9);
}

/* Smooth animation for all navbar elements */
.navbar-desktop,
.navbar-socials,
.navbar-hamburger {
  transition: all 0.3s ease;
}

/* Additional styling for better visual hierarchy */
.header-wrapper.shrunk {
  border-bottom: 1px solid rgba(223, 186, 159, 0.2);
}

/* Logo text adjustments in shrunk state */
.header-wrapper.shrunk .logo-main {
  font-size: 1.4rem;
}

.header-wrapper.shrunk .logo-sub {
  font-size: 0.7rem;
}

/* Ensure content doesn't jump when header shrinks */
body {
  transition: padding-top 0.3s ease;
}

/* Add a subtle glow effect to shrunk header */
.header-wrapper.shrunk::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.5;
}




/* --------------------------------------------------------------------- */
.portfolio-image .zoom-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 2;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  cursor: pointer;
}

.portfolio-image:hover .zoom-btn,
.portfolio-image:focus-within .zoom-btn {
  opacity: 1;
  pointer-events: auto;
}