:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.ntr-hero {
    position: relative;
    min-height: 50vh;
    background: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 80px 20px;
}

.ntr-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ntr-hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 200px;
}

.ntr-hero-title {
    font-family: "Varela Round", sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ntr-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.ntr-hero-images {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ntr-hero-image-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    background: var(--bg-light);
    flex-shrink: 0;
}

.ntr-hero-image-wrapper:hover {
    transform: scale(1.05);
}

.ntr-hero-image-wrapper.ntr-hero-side {
    width: 280px;
    height: 280px;
}

.ntr-hero-image-wrapper.ntr-hero-center {
    width: 350px;
    height: 350px;
    z-index: 3;
}

.ntr-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.ntr-hero-image-wrapper img.ntr-hero-fade-out {
    opacity: 0;
}

.ntr-hero-dots {
    position: absolute;
    bottom: -260px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.ntr-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ntr-hero-dot.ntr-hero-active {
    background: var(--primary-hover);
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .ntr-hero-title {
        font-size: 2.5rem;
    }

    .ntr-hero-images {
        max-width: 900px;
        gap: 30px;
    }

    .ntr-hero-image-wrapper.ntr-hero-side {
        width: 220px;
        height: 220px;
    }

    .ntr-hero-image-wrapper.ntr-hero-center {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .ntr-hero {
        padding: 60px 20px;
        min-height: 40vh;
    }

    .ntr-hero-title {
        font-size: 2rem;
    }

    .ntr-hero-subtitle {
        font-size: 1rem;
    }

    .ntr-hero-content {
        padding-bottom: 160px;
    }

    .ntr-hero-images {
        max-width: 90%;
        gap: 20px;
        height: 200px;
        bottom: -160px;
    }

    .ntr-hero-image-wrapper.ntr-hero-side {
        width: 160px;
        height: 160px;
    }

    .ntr-hero-image-wrapper.ntr-hero-center {
        width: 200px;
        height: 200px;
    }

    .ntr-hero-dots {
        bottom: -200px;
    }
}

@media (max-width: 600px) {
    .ntr-hero-title {
        font-size: 1.8rem;
    }

    .ntr-hero-subtitle {
        font-size: 0.95rem;
    }

    .ntr-hero-content {
        padding-bottom: 140px;
    }

    .ntr-hero-images {
        max-width: 95%;
        gap: 12px;
        height: 160px;
        bottom: -120px;
    }

    .ntr-hero-image-wrapper.ntr-hero-side {
        width: 120px;
        height: 120px;
    }

    .ntr-hero-image-wrapper.ntr-hero-center {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .ntr-hero-title {
        font-size: 1.5rem;
    }

    .ntr-hero-subtitle {
        font-size: 0.9rem;
    }

    .ntr-hero-content {
        padding-bottom: 130px;
    }

    .ntr-hero-images {
        max-width: 95%;
        gap: 8px;
        height: 140px;
    }

    .ntr-hero-image-wrapper.ntr-hero-side {
        width: 100px;
        height: 100px;
    }

    .ntr-hero-image-wrapper.ntr-hero-center {
        width: 140px;
        height: 140px;
    }

    .ntr-hero-dot {
        width: 10px;
        height: 10px;
    }

    .ntr-hero-dot.ntr-hero-active {
        width: 28px;
    }
}

@media (max-width: 380px) {
    .ntr-hero-title {
        font-size: 1.4rem;
    }

    .ntr-hero-subtitle {
        font-size: 0.85rem;
    }

    .ntr-hero-content {
        padding-bottom: 120px;
    }

    .ntr-hero-images {
        max-width: 98%;
        gap: 6px;
        height: 120px;
        bottom: -80px;
    }

    .ntr-hero-image-wrapper.ntr-hero-side {
        width: 85px;
        height: 85px;
    }

    .ntr-hero-image-wrapper.ntr-hero-center {
        width: 120px;
        height: 120px;
    }

    .ntr-hero-dots {
        bottom: -110px;
    }

    .ntr-hero-dot {
        width: 8px;
        height: 8px;
    }

    .ntr-hero-dot.ntr-hero-active {
        width: 24px;
    }
}

.ntr-hero-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ntr-hero-bottom-divider svg {
    position: relative;
    display: block;
    width: calc(265% + 1.3px);
    height: 163px;
}

.ntr-hero-bottom-divider .shape-fill {
    fill: #ffffff;
}

@media (max-width: 767px) {
    .ntr-hero-bottom-divider svg {
        width: calc(274% + 1.3px);
        height: 163px;
    }
}

.ntr-type-section {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ntr-type-section.ntr-type-visible {
  opacity: 1;
  transform: translateY(0);
}

.ntr-type-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 32px;
}

.ntr-type-header {
  text-align: center;
  margin-bottom: 60px;
}

.ntr-type-title {
  font-family: "Varela Round", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.ntr-type-highlight {
  color: var(--primary);
}

.ntr-type-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  min-height: 500px;
}

.ntr-type-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(102, 153, 102, 0.1);
}

.ntr-type-card.ntr-type-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.ntr-type-card:nth-child(1) {
  transition-delay: 0.1s;
}

.ntr-type-card:nth-child(2) {
  transition-delay: 0.2s;
}

.ntr-type-card:nth-child(3) {
  transition-delay: 0.3s;
}

.ntr-type-card:nth-child(4) {
  transition-delay: 0.4s;
}

.ntr-type-card.ntr-type-expanded {
  flex: 2;
}

.ntr-type-card.ntr-type-narrow {
  flex: 0.6;
}

.ntr-type-card:hover {
  border-color: rgba(102, 153, 102, 0.3);
}

.ntr-type-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ntr-type-card:hover .ntr-type-image {
  transform: scale(1.05);
}

.ntr-type-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  transition: background 0.4s ease;
}

.ntr-type-card.ntr-type-narrow .ntr-type-overlay {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.ntr-type-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #ffffff;
  z-index: 2;
}

.ntr-type-card-title {
  font-family: "Varela Round", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.ntr-type-narrow .ntr-type-card-title {
  font-size: 20px;
  margin-bottom: 0;
}

.ntr-type-card-description {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 1;
  max-height: 200px;
  transition: all 0.4s ease;
}

.ntr-type-narrow .ntr-type-card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .ntr-type-content {
    padding: 24px;
  }

  .ntr-type-card-title {
    font-size: 20px;
  }

  .ntr-type-narrow .ntr-type-card-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .ntr-type-section {
    padding: 60px 0;
  }

  .ntr-type-container {
    padding: 0 24px;
  }

  .ntr-type-title {
    font-size: 32px;
  }

  .ntr-type-grid {
    flex-direction: column;
  }

  .ntr-type-card {
    height: 350px;
  }

  .ntr-type-card.ntr-type-expanded {
    flex: none;
  }

  .ntr-type-card.ntr-type-narrow {
    flex: none;
    height: 250px;
  }

  .ntr-type-content {
    padding: 20px;
  }

  .ntr-type-card-title {
    font-size: 22px;
  }

  .ntr-type-narrow .ntr-type-card-title {
    font-size: 20px;
  }

  .ntr-type-card-description {
    font-size: 13px;
  }

  .ntr-type-narrow .ntr-type-card-description {
    opacity: 1;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .ntr-type-title {
    font-size: 28px;
  }

  .ntr-type-card {
    height: 300px;
  }

  .ntr-type-card.ntr-type-narrow {
    height: 220px;
  }
}
.ntr-cta-section {
    width: 100%;
    padding: 0 20px;
    margin: 100px 0;
}

.ntr-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--primary-hover);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.ntr-cta-container::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ntr-cta-container::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.ntr-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ntr-cta-title {
    font-family: "Varela Round", sans-serif;
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.ntr-cta-description {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.ntr-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ntr-cta-btn {
    font-family: "Instrument Sans", sans-serif;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ntr-cta-btn-primary {
    background: var(--secondary);
    color: var(--text-light);
}

.ntr-cta-btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.ntr-cta-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.ntr-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.ntr-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.ntr-cta-btn-primary:hover i {
    transform: translateX(4px);
}

.ntr-cta-btn-secondary:hover i {
    transform: scale(1.1);
}

.ntr-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.ntr-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.ntr-cta-feature i {
    color: var(--text-light);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .ntr-cta-container {
        padding: 70px 50px;
    }

    .ntr-cta-title {
        font-size: 2.4rem;
    }

    .ntr-cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ntr-cta-section {
        margin: 80px 0;
    }

    .ntr-cta-container {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .ntr-cta-title {
        font-size: 2rem;
    }

    .ntr-cta-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .ntr-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ntr-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }

    .ntr-cta-features {
        gap: 25px;
        margin-top: 40px;
    }

    .ntr-cta-feature {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ntr-cta-section {
        padding: 0 15px;
        margin: 60px 0;
    }

    .ntr-cta-container {
        padding: 50px 30px;
        border-radius: 16px;
    }

    .ntr-cta-title {
        font-size: 1.7rem;
    }

    .ntr-cta-description {
        font-size: 0.9rem;
    }

    .ntr-cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

.ntr-why-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 200px auto 0;
    position: relative;
    overflow: hidden;
}

.ntr-why-bg-food {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.3s ease;
}

.ntr-why-bg-food:hover {
    transform: scale(1.1);
}

.ntr-why-bg-food.ntr-why-food-1 {
    width: 120px;
    height: 120px;
    top: 8%;
    left: 5%;
}

.ntr-why-bg-food.ntr-why-food-2 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 8%;
}

.ntr-why-bg-food.ntr-why-food-3 {
    width: 90px;
    height: 90px;
    top: 45%;
    left: 3%;
}

.ntr-why-bg-food.ntr-why-food-4 {
    width: 110px;
    height: 110px;
    bottom: 15%;
    left: 8%;
}

.ntr-why-bg-food.ntr-why-food-5 {
    width: 95px;
    height: 95px;
    bottom: 20%;
    right: 5%;
}

.ntr-why-bg-food.ntr-why-food-6 {
    width: 85px;
    height: 85px;
    top: 60%;
    right: 10%;
}

.ntr-why-bg-food img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ntr-why-header {
    text-align: center;
    margin-bottom: 80px;
}

.ntr-why-tag {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ntr-why-title {
    font-family: "Varela Round", sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
}

.ntr-why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ntr-why-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ntr-why-item {
    display: flex;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.ntr-why-item.ntr-why-visible {
    opacity: 1;
    transform: translateY(0);
}

.ntr-why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.ntr-why-item:hover .ntr-why-icon {
    background: var(--primary-hover);
    transform: scale(1.1) rotate(5deg);
}

.ntr-why-text {
    flex: 1;
}

.ntr-why-text h3 {
    font-family: "Varela Round", sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: normal;
}

.ntr-why-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.ntr-why-image {
    position: relative;
    height: 550px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.ntr-why-image.ntr-why-visible {
    opacity: 1;
    transform: translateX(0);
}

.ntr-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .ntr-why-section {
        padding: 80px 20px;
    }

    .ntr-why-header {
        margin-bottom: 60px;
    }

    .ntr-why-title {
        font-size: 2rem;
    }

    .ntr-why-container {
        gap: 50px;
    }

    .ntr-why-image {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .ntr-why-section {
        padding: 60px 20px;
    }

    .ntr-why-bg-food.ntr-why-food-1,
    .ntr-why-bg-food.ntr-why-food-4 {
        width: 80px;
        height: 80px;
    }

    .ntr-why-bg-food.ntr-why-food-2,
    .ntr-why-bg-food.ntr-why-food-5 {
        width: 70px;
        height: 70px;
    }

    .ntr-why-bg-food.ntr-why-food-3,
    .ntr-why-bg-food.ntr-why-food-6 {
        width: 65px;
        height: 65px;
    }

    .ntr-why-header {
        margin-bottom: 50px;
    }

    .ntr-why-title {
        font-size: 1.8rem;
    }

    .ntr-why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ntr-why-content {
        gap: 35px;
    }

    .ntr-why-image {
        height: 400px;
        order: -1;
    }

    .ntr-why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .ntr-why-text h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ntr-why-section {
        padding: 50px 20px;
    }

    .ntr-why-title {
        font-size: 1.5rem;
    }

    .ntr-why-content {
        gap: 30px;
    }

    .ntr-why-item {
        gap: 20px;
    }

    .ntr-why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .ntr-why-text h3 {
        font-size: 1.15rem;
    }

    .ntr-why-text p {
        font-size: 0.9rem;
    }

    .ntr-why-image {
        height: 350px;
    }
}

