:root {
  --primary: #1b4332;
  --primary-light: #2d6a4f;
  --primary-dark: #0d1b14;
  --secondary: #d4a574;
  --secondary-light: #e8d5b7;
  --accent: #e8977e;
  --accent-light: #f0bcad;
  --dark: #0d1b14;
  --light: #f8f6f3;
  --light-alt: #efece7;
  --white: #ffffff;
  --gray-100: #f0eeeb;
  --gray-200: #e0dcd6;
  --gray-300: #c4beb6;
  --gray-400: #a39b91;
  --gray-500: #7a7268;
  --gray-600: #5c554c;
  --gray-700: #3e3933;
  --gray-800: #26221e;
  --gray-900: #141210;
  --font-primary: "Playfair Display", Georgia, serif;
  --font-secondary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-800);
  background-color: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
h4 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
}
h5 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}
h6 {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover {
  color: var(--primary-light);
}
img {
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 6rem 0;
}
@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }
}
@media (max-width: 575.98px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}
.btn-secondary:hover {
  background-color: #c49660;
  border-color: #c49660;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--gray-800);
  color: var(--gray-800);
}
.btn-outline-dark:hover {
  background: var(--gray-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: all var(--transition-base);
}
.btn-link-custom:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  gap: 1.25rem;
}
.btn-link-custom i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}
.btn-link-custom:hover i {
  transform: translateX(4px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2px;
  background-color: var(--primary);
}
.section-label.light {
  color: var(--secondary);
}
.section-label.light::before {
  background-color: var(--secondary);
}
.section-label.white-label {
  color: var(--white);
}
.section-label.white-label::before {
  background-color: var(--white);
}

.text-primary-custom {
  color: var(--primary) !important;
}
.text-secondary-custom {
  color: var(--secondary) !important;
}
.text-accent-custom {
  color: var(--accent) !important;
}
.bg-primary-custom {
  background-color: var(--primary) !important;
}
.bg-secondary-custom {
  background-color: var(--secondary) !important;
}
.bg-dark-custom {
  background-color: var(--dark) !important;
}
.bg-light-custom {
  background-color: var(--light) !important;
}
.bg-light-alt {
  background-color: var(--light-alt) !important;
}

.overlay-dark {
  position: relative;
}
.overlay-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 20, 0.85) 0%, rgba(13, 27, 20, 0.45) 100%);
  z-index: 1;
}
.overlay-dark > * {
  position: relative;
  z-index: 2;
}

.overlay-primary {
  position: relative;
}
.overlay-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.92) 0%, rgba(27, 67, 50, 0.7) 100%);
  z-index: 1;
}
.overlay-primary > * {
  position: relative;
  z-index: 2;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-section .hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}
.hero-section .hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  font-weight: 300;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

.carousel-custom .carousel-indicators {
  bottom: 2.5rem;
}
.carousel-custom .carousel-indicators button {
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 0.35rem;
  transition: all var(--transition-base);
}
.carousel-custom .carousel-indicators button.active {
  background-color: var(--white);
  width: 5rem;
}
.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
  width: 4rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition-base);
}
.carousel-custom:hover .carousel-control-prev,
.carousel-custom:hover .carousel-control-next {
  opacity: 1;
}
.carousel-custom .carousel-control-prev {
  left: 2rem;
}
.carousel-custom .carousel-control-next {
  right: 2rem;
}
.carousel-custom .carousel-control-prev:hover,
.carousel-custom .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  background: var(--light-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}
.service-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}
.service-card h3 {
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.service-card .service-price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.gallery-grid .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid .gallery-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid .gallery-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-grid .gallery-item:nth-child(2),
  .gallery-grid .gallery-item:nth-child(3),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(5),
  .gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 20, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item .gallery-overlay h5 {
  color: var(--white);
  margin-bottom: 0.25rem;
}
.gallery-item .gallery-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card .team-img {
  height: 320px;
  overflow: hidden;
}
.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.team-card .team-body {
  padding: 1.5rem 2rem 2rem;
}
.team-card .team-body h4 {
  margin-bottom: 0.2rem;
}
.team-card .team-body .team-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-card .team-body p {
  font-size: 0.9rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial-card .testimonial-author .avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-200);
  flex-shrink: 0;
}
.testimonial-card .testimonial-author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card .testimonial-author .info h6 {
  margin-bottom: 0;
  font-size: 1rem;
}
.testimonial-card .testimonial-author .info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.stats-card {
  text-align: center;
  padding: 2rem;
}
.stats-card .stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-card .stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 4rem;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.process-step .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.process-step .step-content h5 {
  margin-bottom: 0.25rem;
}
.process-step .step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
}
.faq-accordion .accordion-button {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-800);
  background: transparent;
  box-shadow: none;
  padding: 1.25rem 0;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  width: auto;
  height: auto;
  transition: transform var(--transition-base);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-accordion .accordion-body {
  padding: 0 0 1.5rem 0;
  color: var(--gray-600);
}

.contact-form .form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  background: var(--white);
  color: var(--gray-800);
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.1);
  outline: none;
}
.contact-form .form-control::placeholder {
  color: var(--gray-400);
}
.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.notification-toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.notification-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.notification-toast .toast-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.notification-toast .toast-content h6 {
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
}
.notification-toast .toast-content p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--gray-900);
  color: var(--white);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.cookie-banner .cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}
.cookie-banner .cookie-text a:hover {
  color: var(--secondary-light);
}
.cookie-banner .btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
}
.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white) 0%, var(--light-alt) 100%);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}
.price-card .price-amount {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-card .price-amount span {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
}
.price-card .price-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.price-card ul li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-card ul li:last-child {
  border-bottom: none;
}
.price-card ul li i {
  color: var(--primary);
  font-size: 0.75rem;
  width: 1.2rem;
}

footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  overflow-x: hidden;
}
footer h5 {
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}
footer a:hover {
  color: var(--secondary);
}
footer .footer-link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}
footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
footer .footer-contact-item i {
  color: var(--secondary);
  width: 1.2rem;
  margin-top: 0.25rem;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}
footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-bottom a:hover {
  color: var(--secondary);
}
footer .social-links {
  display: flex;
  gap: 0.75rem;
}
footer .social-links a {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition-base);
}
footer .social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.page-header {
  padding: 12rem 0 5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 0;
}
.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}
.page-header .breadcrumb .breadcrumb-item {
  font-size: 0.85rem;
}
.page-header .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumb .breadcrumb-item.active {
  color: var(--secondary);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card .blog-img {
  height: 240px;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-card .blog-body {
  padding: 1.75rem;
}
.blog-card .blog-body .blog-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.blog-card .blog-body h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.blog-card .blog-body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-item .value-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--light-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: all var(--transition-base);
}
.value-item:hover .value-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}
.value-item h5 {
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cta-section {
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-section h2 {
  color: var(--white);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

.divider-custom {
  width: 4rem;
  height: 3px;
  background: var(--secondary);
  margin: 1.5rem 0;
}
.divider-custom.light {
  background: var(--white);
}
.divider-custom.center {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
    background-attachment: scroll;
    margin-top: 50px;
  }
  .carousel-custom .carousel-control-prev,
  .carousel-custom .carousel-control-next {
    display: none;
  }
  .cta-section {
    background-attachment: scroll;
  }
}
@media (max-width: 575.98px) {
  .notification-toast {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    max-width: none;
  }
  .cookie-banner .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  .price-card.featured::before {
    font-size: 0.6rem;
    padding: 0.2rem 0.7rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animated-fade {
  animation: fadeInUp 0.8s ease forwards;
}
.animated-left {
  animation: fadeInLeft 0.8s ease forwards;
}
.animated-right {
  animation: fadeInRight 0.8s ease forwards;
}
.stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-item:nth-child(4) {
  animation-delay: 0.4s;
}
.stagger-item:nth-child(5) {
  animation-delay: 0.5s;
}
.stagger-item:nth-child(6) {
  animation-delay: 0.6s;
}
.stagger-item:nth-child(7) {
  animation-delay: 0.7s;
}
.stagger-item:nth-child(8) {
  animation-delay: 0.8s;
}

.bg-pattern-dots {
  background-image: radial-gradient(var(--gray-300) 1px, transparent 1px);
  background-size: 20px 20px;
}
.bg-pattern-dots-light {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.shadow-hover {
  transition: box-shadow var(--transition-base);
}
.shadow-hover:hover {
  box-shadow: var(--shadow-lg);
}
.rounded-custom {
  border-radius: var(--radius-md);
}
.rounded-custom-lg {
  border-radius: var(--radius-lg);
}
.overflow-hidden {
  overflow: hidden;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.position-relative {
  position: relative;
}
.object-fit-cover {
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.navbar-custom {
  padding: 0.75rem 0;
  transition: all var(--transition-base);
  background: transparent;
  z-index: 1000;
}
.navbar-custom.scrolled {
  background: rgba(248, 246, 243, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.navbar-custom .navbar-brand img {
  transition: all var(--transition-base);
}
.navbar-custom .nav-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1.2rem !important;
  transition: all var(--transition-base);
  position: relative;
}
.navbar-custom.scrolled .nav-link {
  color: var(--gray-700);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--white);
}
.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
  color: var(--primary);
}
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-custom .navbar-toggler {
  border: none;
  padding: 0;
  color: var(--white);
  font-size: 1.5rem;
}
.navbar-custom.scrolled .navbar-toggler {
  color: var(--gray-800);
}
.navbar-custom.scrolled .text-white,
.navbar-custom.scrolled .text-white-50 {
  color: var(--gray-600) !important;
}
.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .navbar-custom {
    background: rgba(13, 27, 20, 0.98);
    overflow-x: hidden;
    max-width: 100vw;
  }
  .navbar-custom.scrolled {
    background: rgba(248, 246, 243, 0.98);
  }
  .navbar-custom .navbar-collapse {
    padding: 1rem 0;
  }
  .navbar-custom .nav-link {
    padding: 0.6rem 0 !important;
  }
  .navbar-custom .nav-link::after {
    display: none;
  }
}
#inject-header,
#inject-footer,
#page-root {
  overflow-x: hidden;
  max-width: 100vw;
}
